Add run script

This commit is contained in:
Anthony Wang 2021-05-08 18:20:25 -05:00
parent c3a604c952
commit 89507279cf
Signed by: a
GPG key ID: BC96B00AEC5F2D76
3 changed files with 17 additions and 0 deletions

6
build Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
source ./env
cd front
npm run build
cd ../back
npm run build

6
env Normal file
View file

@ -0,0 +1,6 @@
export NEXT_PUBLIC_BACK_HOST='https://server.exozy.me'
export ORIGIN="*"
export PORT=4000
export SSL_KEY=/etc/letsencrypt/live/exozy.me/privkey.pem
export SSL_CERT=/etc/letsencrypt/live/exozy.me/cert.pem
export SSL_CA=/etc/letsencrypt/live/exozy.me/chain.pem

5
run Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
source ./env
./build
cd front
npm run start -- -p 5000 | sudo -E node ../back/dist/index.js