25 lines
633 B
Bash
Executable File
25 lines
633 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -d "venv" ]; then
|
|
echo "Creating virtual environment in 'venv'..."
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
if [ -f "requirements.txt" ]; then
|
|
echo "Installing requirements..."
|
|
pip install -r requirements.txt
|
|
fi
|
|
else
|
|
source venv/bin/activate
|
|
fi
|
|
|
|
echo "Building frontend..."
|
|
(
|
|
cd frontend
|
|
if [ ! -d "node_modules" ]; then
|
|
echo "Installing frontend dependencies..."
|
|
npm install
|
|
fi
|
|
npm run build
|
|
)
|
|
|
|
exec gunicorn --bind 0.0.0.0:5000 --workers 1 --worker-class geventwebsocket.gunicorn.workers.GeventWebSocketWorker app:app --log-level info |