blob: ece841b60b838c404c2f38dd009fd1b44645f01f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
# Environment variable
export NEXT_PUBLIC_BACK_HOST='https://server.exozy.me'
export FRONT_PORT=5000
export PORT=6000
# Build
cd front
npm run build
cd ../back
npm run build
echo 'Build complete'
# Run
cd ../front
npm run start -- -p $FRONT_PORT | node ../back/dist/index.js
|