7 lines
379 B
Bash
7 lines
379 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
echo "Starting fold-stack development environment (excluding Overleaf CE by default)..."
|
||
|
|
docker compose --env-file .env.dev -f docker-compose.dev.yml up -d --build ghost forgejo radicle pandoc mailhog trilium hedgedoc nextcloud rclone typst git-sync flame_dashboard nginx
|
||
|
|
echo "Core services started. To enable Overleaf CE, run: ./scripts/enable-overleaf.sh"
|