fuware-be/Taskfile.yml
2024-06-01 12:34:20 +00:00

24 lines
350 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:dev:
desc: runs the backend server
cmds:
- poetry run python backend/app.py
ui:dev:
desc: runs the frontend server
dir: frontend
cmds:
- pnpm dev