Add DB version with alimbic and add log system

This commit is contained in:
2024-05-11 15:16:16 +00:00
parent 392dee8640
commit a7e31b8ca9
24 changed files with 1131 additions and 137 deletions

22
Taskfile.yml Normal file
View File

@ -0,0 +1,22 @@
version: "3"
vars:
GREETING: Hello, World!
env:
DEFAULT_GROUP: Home
PRODUCTION: false
API_PORT: 9000
API_DOCS: True
dotenv:
- .env
- .dev.env
tasks:
py:setupdb:
desc: runs it first for init db
cmds:
- poetry run python fuware/db/init_db.py
py:dev:
desc: runs the backend server
cmds:
- poetry run python fuware/app.py