9 lines
156 B
Text
9 lines
156 B
Text
|
|
#!/usr/bin/with-contenv bash
|
||
|
|
cd /app/backend
|
||
|
|
|
||
|
|
# Run database migrations before starting the app
|
||
|
|
yarn db:push
|
||
|
|
|
||
|
|
# Start the application
|
||
|
|
exec node dist/app.js
|