mirror of
https://github.com/alireza0/s-ui.git
synced 2026-06-27 19:20:53 +00:00
8 lines
No EOL
111 B
Bash
Executable file
8 lines
No EOL
111 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DB_PATH="${SUI_DB_FOLDER:-/app/db}/s-ui.db"
|
|
if [ -f "$DB_PATH" ]; then
|
|
./sui migrate
|
|
fi
|
|
|
|
exec ./sui |