10 lines
112 B
Bash
10 lines
112 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Migrate the database
|
|
npm run db:migrate
|
|
|
|
# Start the production server
|
|
node build/index.js
|
|
|