initial server stuff

This commit is contained in:
iamBadgers
2026-03-15 15:23:48 -07:00
commit 6bb60c49f4
7 changed files with 94 additions and 0 deletions

18
compose.yaml Normal file
View File

@@ -0,0 +1,18 @@
services:
api:
build: .
command: ["flask", "--app", "./src/main", "--debug", "run", "--host=0.0.0.0"]
ports:
- 5000:5000
develop:
watch:
- action: sync
path: ./src
target: /app/src
- action: rebuild
path: requirements.txt
- action: rebuild
path: Dockerfile
- action: rebuild
path: compose.yaml