Spaces:
Sleeping
Sleeping
Upload 2 files
Browse files- .gitignore +47 -0
- requirements.txt +8 -0
.gitignore
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python virtual environment
|
| 2 |
+
.venv/
|
| 3 |
+
venv/
|
| 4 |
+
env/
|
| 5 |
+
ENV/
|
| 6 |
+
|
| 7 |
+
# Python cache files
|
| 8 |
+
__pycache__/
|
| 9 |
+
*.py[cod]
|
| 10 |
+
*$py.class
|
| 11 |
+
*.so
|
| 12 |
+
.Python
|
| 13 |
+
*.egg-info/
|
| 14 |
+
.installed.cfg
|
| 15 |
+
*.egg
|
| 16 |
+
app/__pycache__/
|
| 17 |
+
app/crud/__pycache__/
|
| 18 |
+
app/models/__pycache__/
|
| 19 |
+
app/routes/__pycache__/
|
| 20 |
+
app/schemas/__pycache__/
|
| 21 |
+
tests/__pycache__/
|
| 22 |
+
|
| 23 |
+
# Database
|
| 24 |
+
database/items.db
|
| 25 |
+
*.db
|
| 26 |
+
*.sqlite
|
| 27 |
+
*.sqlite3
|
| 28 |
+
|
| 29 |
+
# IDE specific files
|
| 30 |
+
.idea/
|
| 31 |
+
.vscode/
|
| 32 |
+
*.swp
|
| 33 |
+
*.swo
|
| 34 |
+
.DS_Store
|
| 35 |
+
|
| 36 |
+
# Logs
|
| 37 |
+
*.log
|
| 38 |
+
|
| 39 |
+
# Unit test / coverage reports
|
| 40 |
+
htmlcov/
|
| 41 |
+
.tox/
|
| 42 |
+
.coverage
|
| 43 |
+
.coverage.*
|
| 44 |
+
.cache
|
| 45 |
+
nosetests.xml
|
| 46 |
+
coverage.xml
|
| 47 |
+
*.cover
|
requirements.txt
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
fastapi==0.103.1
|
| 2 |
+
uvicorn==0.23.2
|
| 3 |
+
sqlalchemy==2.0.20
|
| 4 |
+
pydantic==2.3.0
|
| 5 |
+
jinja2==3.1.2
|
| 6 |
+
httpx
|
| 7 |
+
requests
|
| 8 |
+
jose
|