17 lines
290 B
Bash
Executable file
17 lines
290 B
Bash
Executable file
#!/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
|