mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-30 18:29:37 +02:00
9 lines
156 B
Bash
9 lines
156 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Start your application here
|
||
|
# Example: node build/index.js
|
||
|
# print message
|
||
|
echo "Starting the application"
|
||
|
npm run migrate
|
||
|
node build/index.js
|