aboutsummaryrefslogtreecommitdiff
path: root/run
blob: a51ef12e7007dcb81b20bb07bdae4a30208c1b15 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

# Build
cd front
npm run build
cd ../back
npm run build

# Run
cd ../front
npm run start -- -p 5000 | env PORT=6000 NEXT_PUBLIC_BACK_HOST='https://server.exozy.me' node ../back/dist/index.js