mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
8 lines
128 B
Bash
Executable File
8 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -f "/venv/bin/activate" ]; then
|
|
source /venv/bin/activate
|
|
fi
|
|
alembic upgrade head
|
|
python -m reflector.app
|