11 lines
182 B
Bash
11 lines
182 B
Bash
#!/bin/bash
|
|
|
|
echo "Running database migrations..."
|
|
aerich upgrade
|
|
|
|
echo "Starting reindex process..."
|
|
python main.py "" --reindex
|
|
|
|
echo "Starting Flask application..."
|
|
python app.py
|