feat(storage): add local storage framework
This commit is contained in:
parent
228da8f814
commit
964b545bc5
24 changed files with 890 additions and 98 deletions
18
scripts/deploy.sh
Executable file
18
scripts/deploy.sh
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
cd "$(dirname "$0")/.."
|
||||
|
||||
echo "==> Building Docker images"
|
||||
docker compose build
|
||||
|
||||
echo "==> Starting services"
|
||||
docker compose up -d
|
||||
|
||||
echo "==> Running migrations"
|
||||
scripts/migrate.sh
|
||||
|
||||
echo "==> Running healthcheck"
|
||||
scripts/healthcheck.sh
|
||||
|
||||
echo "==> Deployment completed"
|
||||
Loading…
Add table
Add a link
Reference in a new issue