Inital Commit

This commit is contained in:
2026-01-24 02:32:25 +00:00
commit a4b7c82b1a
54 changed files with 888 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3.8'
services:
# The Flask Backend
api:
build: ./backend # Path to your Dockerfile
container_name: flask_api
restart: always
ports:
- "5000:5000" # Maps VM Port 5000 -> Container Port 5000
environment:
- SECRET_KEY=your_secret_key_here
# Add database URLs here later
# (Optional) Add a database or cache here easily later
# redis:
# image: redis:alpine