mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 00:32:43 +10:00
46 lines
1.2 KiB
Bash
Executable File
46 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR="$(readlink -f "$(dirname "$0")")"
|
|
MONOREPO_ROOT="$(readlink -f "$SCRIPT_DIR/../")"
|
|
|
|
# Check if docker is installed
|
|
if ! command -v docker >/dev/null 2>&1; then
|
|
echo "Docker is not installed. Please install Docker and try again."
|
|
exit 1
|
|
fi
|
|
|
|
# Check if docker-compose is installed
|
|
if ! command -v docker-compose >/dev/null 2>&1; then
|
|
echo "Docker Compose is not installed. Please install Docker Compose and try again."
|
|
exit 1
|
|
fi
|
|
|
|
# Check if we have a .env file
|
|
if [ ! -f "$MONOREPO_ROOT/.env" ]; then
|
|
echo "No .env file found. Please create one and try again."
|
|
echo "See .env.example for an example."
|
|
exit 1
|
|
fi
|
|
|
|
# Change to the monorepo root directory
|
|
pushd "$MONOREPO_ROOT" >/dev/null
|
|
|
|
# On failure popd back to the original directory
|
|
trap "popd" EXIT
|
|
|
|
# If we have received the -down or -d flag, stop the containers
|
|
if [ "$1" = "-down" ] || [ "$1" = "-d" ]; then
|
|
docker-compose -f "$MONOREPO_ROOT/docker/compose-without-app.yml" down
|
|
exit 0
|
|
fi
|
|
|
|
docker-compose -f "$MONOREPO_ROOT/docker/compose-without-app.yml" up -d
|
|
|
|
# Install dependencies
|
|
npm ci
|
|
|
|
# Migrate the database
|
|
npm run db-migrate:dev
|
|
|
|
echo "All done! You can now start the app with: npm run dev"
|