Files
tainagustului/UI_V2/entrypoint.sh
2025-12-17 18:32:46 +02:00

12 lines
294 B
Bash

#!/bin/sh
# 1. Run your superuser script
python create_super_user.py
# 2. Start Flask in the background (&)
# We use & to let it run while the script continues
python flask_server.py &
# 3. Start Flet (Main process)
# This stays in the foreground so the container doesn't exit
python main.py