gni commited on
Commit ·
bace0ea
1
Parent(s): 5b17aa6
fix: include slowapi in requirements and add dockerignore
Browse files- .dockerignore +20 -0
- api/requirements.txt +1 -0
.dockerignore
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Ignore local development files
|
| 2 |
+
node_modules/
|
| 3 |
+
dist/
|
| 4 |
+
__pycache__/
|
| 5 |
+
*.pyc
|
| 6 |
+
.git/
|
| 7 |
+
.gitignore
|
| 8 |
+
ui/node_modules/
|
| 9 |
+
ui/dist/
|
| 10 |
+
api/__pycache__/
|
| 11 |
+
api/.pytest_cache/
|
| 12 |
+
|
| 13 |
+
# Ignore development tools
|
| 14 |
+
docker-compose.yml
|
| 15 |
+
docker-compose.prod.yml
|
| 16 |
+
Makefile
|
| 17 |
+
LICENSE
|
| 18 |
+
api/Dockerfile
|
| 19 |
+
ui/Dockerfile
|
| 20 |
+
api/tests/
|
api/requirements.txt
CHANGED
|
@@ -5,4 +5,5 @@ presidio-anonymizer>=2.2.362
|
|
| 5 |
spacy>=3.8.11
|
| 6 |
requests>=2.32.5
|
| 7 |
langdetect>=1.0.9
|
|
|
|
| 8 |
pytest>=9.0.2
|
|
|
|
| 5 |
spacy>=3.8.11
|
| 6 |
requests>=2.32.5
|
| 7 |
langdetect>=1.0.9
|
| 8 |
+
slowapi>=0.1.9
|
| 9 |
pytest>=9.0.2
|