Alex commited on
Commit
e2a4b09
1 Parent(s): 5b3d463

updated README.MD, gitignore; deleted devcontainer

Browse files
Files changed (3) hide show
  1. .devcontainer/devcontainer.json +0 -33
  2. .gitignore +2 -0
  3. README.md +1 -1
.devcontainer/devcontainer.json DELETED
@@ -1,33 +0,0 @@
1
- {
2
- "name": "Python 3",
3
- // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
4
- "image": "mcr.microsoft.com/devcontainers/python:1-3.11-bullseye",
5
- "customizations": {
6
- "codespaces": {
7
- "openFiles": [
8
- "README.md",
9
- "run.py"
10
- ]
11
- },
12
- "vscode": {
13
- "settings": {},
14
- "extensions": [
15
- "ms-python.python",
16
- "ms-python.vscode-pylance"
17
- ]
18
- }
19
- },
20
- "updateContentCommand": "[ -f packages.txt ] && sudo apt update && sudo apt upgrade -y && sudo xargs apt install -y <packages.txt; [ -f requirements.txt ] && pip3 install --user -r requirements.txt; pip3 install --user streamlit; echo '✅ Packages installed and Requirements met'",
21
- "postAttachCommand": {
22
- "server": "streamlit run run.py --server.enableCORS false --server.enableXsrfProtection false"
23
- },
24
- "portsAttributes": {
25
- "8501": {
26
- "label": "Application",
27
- "onAutoForward": "openPreview"
28
- }
29
- },
30
- "forwardPorts": [
31
- 8501
32
- ]
33
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
.gitignore CHANGED
@@ -146,3 +146,5 @@ dmypy.json
146
  # Cython debug symbols
147
  cython_debug/
148
 
 
 
 
146
  # Cython debug symbols
147
  cython_debug/
148
 
149
+ # Streamlit
150
+ .devcontainer
README.md CHANGED
@@ -19,7 +19,7 @@
19
  ## Как запустить
20
  Запуск осуществляется через модуль streamlit:
21
  ```
22
- streamlit run <путь>\run.py
23
  ```
24
 
25
  ## Как использовать
 
19
  ## Как запустить
20
  Запуск осуществляется через модуль streamlit:
21
  ```
22
+ streamlit run run.py
23
  ```
24
 
25
  ## Как использовать