7 lines
123 B
Bash
7 lines
123 B
Bash
#!/bin/sh
|
|
echo "Lanzando migraciones e iniciando servidor"
|
|
npm install
|
|
npm run migrate
|
|
npm run build:esbuild
|
|
npm run start
|