mirror of
https://github.com/rybbit-io/rybbit.git
synced 2025-05-19 15:54:17 +02:00
* init cloud version * remove unused endpoints * implement deletion * Add organization creation * add getSitesUserHasAccessTo * Add permission gating for sites * add organization control * remove username login * support creating new sites for organizations * Delete unused page * wip
13 lines
No EOL
319 B
Bash
13 lines
No EOL
319 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Docker Compose already ensures services are ready using healthchecks
|
|
# and dependency conditions in the docker-compose.yml file
|
|
|
|
# Run migrations explicitly using the npm script
|
|
echo "Running database migrations...."
|
|
npm run db:push
|
|
|
|
# Start the application
|
|
echo "Starting application..."
|
|
exec "$@" |