Spaces:
Running
Running
Plat
commited on
Commit
·
295ecd7
1
Parent(s):
a61a6a9
chore: startup script
Browse files- .gitignore +1 -0
- start.sh +5 -0
.gitignore
CHANGED
@@ -1,2 +1,3 @@
|
|
1 |
.venv
|
2 |
.mypy_cache
|
|
|
|
1 |
.venv
|
2 |
.mypy_cache
|
3 |
+
.DS_Store
|
start.sh
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
|
3 |
+
source .venv/bin/activate
|
4 |
+
|
5 |
+
python ./app.py
|