Porting over most of the things

This commit is contained in:
2020-02-09 22:28:45 -05:00
parent 2fc2139bd6
commit cbf4e851e2
7 changed files with 418 additions and 0 deletions

12
spoke-app-run Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -o errexit
set -o pipefail
main() {
cd /home/spoke/app
source ~/.nvm/nvm.sh
nvm use
exec npm start
}
main "${@}"