mirror of
https://github.com/detleph/server.git
synced 2026-09-04 08:36:06 +02:00
+ Add dev.sh script to start the dev environment + Add generated flags to the .gitignore file
14 lines
170 B
Bash
Executable File
14 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if ! test -f INITIALIZED; then
|
|
touch INITIALIZED
|
|
|
|
cd /app
|
|
|
|
npm i -g ts-node nodemon
|
|
npm i
|
|
npx prisma db push
|
|
fi
|
|
|
|
nodemon /app/src/app.ts
|