Files
SkyMoney/scripts/dev-up.sh
Ricearoni1245 72334b2583
All checks were successful
Deploy / deploy (push) Successful in 2m2s
Security Tests / security-non-db (push) Successful in 20s
Security Tests / security-db (push) Successful in 24s
ui fixes, input fixes, better dev workflow
2026-03-10 23:01:44 -05:00

15 lines
332 B
Bash

#!/usr/bin/env bash
set -euo pipefail
ENV_FILE="${ENV_FILE:-.env.localdev}"
if [[ ! -f "$ENV_FILE" ]]; then
echo "Missing $ENV_FILE"
echo "Copy .env.localdev.example -> .env.localdev and fill secrets/passwords first."
exit 1
fi
docker compose --env-file "$ENV_FILE" up -d --build
echo "Local stack started with $ENV_FILE"