FerrellSyntheticIntelligence commited on
Commit
0fba98d
·
1 Parent(s): c3e2cd8

fix: gitignore, add uvicorn and fastapi to requirements

Browse files
Files changed (2) hide show
  1. .gitignore +7 -4
  2. requirements.txt +2 -0
.gitignore CHANGED
@@ -1,7 +1,10 @@
 
1
  __pycache__/
2
  *.pyc
3
  *.pyo
4
- vitalis_memory.bin
5
- workspace_tasks.json
6
- failure_report.json
7
- project_ledger.json
 
 
 
1
+ venv/
2
  __pycache__/
3
  *.pyc
4
  *.pyo
5
+ *.log
6
+ *.bin
7
+ *.so
8
+ dist/
9
+ *.egg-info/
10
+ *.zip
requirements.txt CHANGED
@@ -50,3 +50,5 @@ typer==0.25.1
50
  typing-inspection==0.4.2
51
  typing_extensions==4.15.0
52
  Werkzeug==3.1.8
 
 
 
50
  typing-inspection==0.4.2
51
  typing_extensions==4.15.0
52
  Werkzeug==3.1.8
53
+ uvicorn>=0.20.0
54
+ fastapi>=0.100.0