Initial project push.

This commit is contained in:
dan612
2026-01-15 09:50:55 -05:00
commit c4312feb95
226 changed files with 32233 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
services:
app:
build: .
ports:
- "127.0.0.1:9000:9000"
volumes:
- .:/app
- ./database:/app/database # Persists your SQLite file
networks:
- app-network
networks:
app-network:
driver: bridge