Files
api/scripts/setup.sh
T

19 lines
452 B
Bash

#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT_DIR"
if [[ ! -f ".env" && -f ".env.example" ]]; then
cp .env.example .env
echo "Created .env from .env.example"
fi
if ! command -v docker >/dev/null 2>&1; then
echo "Docker is required but was not found in PATH."
exit 1
fi
docker compose up -d --build traefik redis mysql-debug php1 caddy
echo "API stack started: http://localhost"