mirror of
https://github.com/detleph/server.git
synced 2026-09-04 08:36:06 +02:00
15 lines
199 B
Bash
Executable File
15 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if ! test -f INITIALIZED; then
|
|
touch INITIALIZED
|
|
|
|
cd /app
|
|
mkdir media
|
|
|
|
npm i -g ts-node nodemon
|
|
npm i
|
|
npx prisma db push
|
|
fi
|
|
|
|
nodemon --watch /app /app/src/app.ts
|