You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
265 B
15 lines
265 B
#!/usr/bin/env bash
|
|
# Deployment script for the production server
|
|
set -euo pipefail
|
|
|
|
echo "==> Building frontend..."
|
|
cd frontend
|
|
npm ci
|
|
npm run build
|
|
cd ..
|
|
|
|
echo "==> Restarting Docker services..."
|
|
docker compose pull
|
|
docker compose up -d --build
|
|
|
|
echo "==> Done."
|
|
|