初始化

This commit is contained in:
2021-01-21 11:59:44 +08:00
parent 8e41c53292
commit 9e2ae2785b
5 changed files with 85 additions and 0 deletions

7
startup.sh Normal file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
python -m venv .venv
source .venv/bin/activate
source .env
pip install -U pip
pip install -r requirements.txt
python app.py