Spaces:
Build error
Build error
Sidoine1991 commited on
Commit ·
d0f31ed
1
Parent(s): 9d032ad
Mise à jour du README et ajout du fichier .gitignore
Browse files- README.md +6 -3
- src/.gitignore +32 -0
README.md
CHANGED
|
@@ -14,7 +14,10 @@ license: mit
|
|
| 14 |
|
| 15 |
# Welcome to Streamlit!
|
| 16 |
|
| 17 |
-
Edit `/
|
| 18 |
|
| 19 |
-
If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
# Welcome to Streamlit!
|
| 16 |
|
| 17 |
+
Edit `/dashboard_app.py` to customize this app to your heart's desire. :heart:
|
| 18 |
|
| 19 |
+
If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community forums](https://discuss.streamlit.io).
|
| 20 |
+
|
| 21 |
+
## Instructions
|
| 22 |
+
- Install dependencies: `pip install -r requirements.txt`
|
| 23 |
+
- Run the app: `streamlit run dashboard_app.py`
|
src/.gitignore
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Ignorer les environnements virtuels
|
| 2 |
+
.venv/
|
| 3 |
+
venv/
|
| 4 |
+
ENV/
|
| 5 |
+
env/
|
| 6 |
+
|
| 7 |
+
# Ignorer les fichiers Python compilés
|
| 8 |
+
__pycache__/
|
| 9 |
+
*.pyc
|
| 10 |
+
*.pyo
|
| 11 |
+
*.pyd
|
| 12 |
+
|
| 13 |
+
# Ignorer les logs
|
| 14 |
+
*.log
|
| 15 |
+
|
| 16 |
+
# Ignorer les fichiers système
|
| 17 |
+
.DS_Store
|
| 18 |
+
Thumbs.db
|
| 19 |
+
|
| 20 |
+
# Ignorer les fichiers de configuration d'environnement
|
| 21 |
+
.env
|
| 22 |
+
*.env
|
| 23 |
+
|
| 24 |
+
# Ignorer les bases de données locales
|
| 25 |
+
*.sqlite3
|
| 26 |
+
|
| 27 |
+
# Ignorer les notebooks checkpoint
|
| 28 |
+
.ipynb_checkpoints/
|
| 29 |
+
|
| 30 |
+
# Ignorer les dossiers temporaires
|
| 31 |
+
*.bak
|
| 32 |
+
*.tmp
|