mirror of
https://github.com/detleph/server.git
synced 2026-09-04 23:45:00 +02:00
12 lines
204 B
Bash
12 lines
204 B
Bash
# Entry point for docker
|
|
|
|
if ! test -f INITIALIZED; then
|
|
# Migrate the database
|
|
# TODO: Update to use prisma migrate
|
|
npx prisma db push
|
|
touch INITIALIZED
|
|
fi
|
|
|
|
# Start the server
|
|
node ./dist/app.js
|