Private
Public Access
1
0

moved to server

Update readme.md

Signed-off-by: rasmus <rsbendtsen@gmail.com>

Update readme.md

Update Dockerfile

Update Dockerfile
This commit is contained in:
2025-12-29 06:19:31 +01:00
commit dd2c15ba67
15 changed files with 1022 additions and 0 deletions

16
compose.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
web:
image: git.rasmusbendtsen.dk/rasmus/madplaner:latest
container_name: madplaner
restart: always
ports:
- "${HOST_PORT:-80}:5000"
volumes:
# sqlite DB lives here
- ./instance:/app/instance
environment:
- FLASK_ENV=production
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY}
- OPENROUTER_MODEL= ${OPENROUTER_MODEL}
- SECRET_KEY=${SECRET_KEY}
- SOURCECODE_LINK=${SOURCECODE_LINK}