12 lines
294 B
Bash
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 |