23 lines
366 B
YAML
23 lines
366 B
YAML
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
|