20 lines
347 B
Bash
Executable File
20 lines
347 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# # CD into our application directory
|
|
# echo CD into our application directory
|
|
# cd /app
|
|
#
|
|
# # Use the correct node version
|
|
# echo Use the correct node version
|
|
# npm install -g n
|
|
# n install `cat .nvmrc`
|
|
#
|
|
# # Install all our packages
|
|
# echo Install all our packages
|
|
# npm install
|
|
|
|
# Start the server
|
|
echo Start the server
|
|
exec $@
|
|
|