- Created a new SQL migration script to seed a default user into the USERS table. - Added a comprehensive Docker Compose configuration for the application, including services for the database, MinIO, KeyDB, backend, and web components. - Configured health checks and environment variables for each service to ensure proper startup and connectivity.
14 lines
No EOL
355 B
Bash
14 lines
No EOL
355 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Preset for staging environment
|
|
export TAG="latest"
|
|
export IMAGE_REGISTRY="ghcr.io"
|
|
export OWNER="marcopedone"
|
|
export SERVICES="web backend"
|
|
export USERNAME="marcopedone"
|
|
export TOKEN="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"
|
|
export ENV_FILE=".env.marcopedone"
|
|
export PREFIX="marcopedone"
|
|
|
|
./build_and_push_ghcr.sh |