reorganized files

This commit is contained in:
Nico Melone
2025-09-18 16:59:30 -05:00
parent e5d6ed6e7e
commit 2617eade47
36 changed files with 811 additions and 4 deletions

13
compose.yaml Normal file
View File

@@ -0,0 +1,13 @@
services:
web:
build:
context: app
target: builder
# flask requires SIGINT to stop gracefully
# (default stop signal from Compose is SIGTERM)
stop_signal: SIGINT
restart: always
ports:
- '8000:8000'
volumes:
- /Users/nico/Documents/GitHub/flask-practice/app:/app