Files
2022-03-12 17:13:38 +07:00

13 lines
224 B
Bash
Executable File

#!/bin/sh
if [ "$NODE_ENV" == "production" ] ; then
npm run start
else
#npx sequelize db:migrate
#npx sequelize db:seed:all
#npm run test
docker-compose exec floatapinode_app npm install
npm run start:dev
fi