7 lines
125 B
Bash
Executable File
7 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "Building frontend..."
|
|
(cd frontend && npm ci && npm run build)
|
|
echo "Starting app..."
|
|
python app.py
|