Closed Since2019 closed 4 years ago
Description goes here(Jake).
comms: forum link, developer list, IRC/email
cd src
npm install
run node and react concurrently
npm run dev
If port confilct happens, change the ports in node and react respectively.
/app.js
const port = 8080
/package.json
3000
SET PORT=3000
"scripts": { "start": "SET PORT=3000 && react-scripts start", ... },
Nice! @Rickson2019 ๐ โmagicโ ๐
Homer
Description goes here(Jake).
Short Links to Important Resources:
comms: forum link, developer list, IRC/email
Testing: how to test the project
run node and react concurrently
If port confilct happens, change the ports in node and react respectively.
/app.js
, change the port variable equal to another port other than 8080/package.json
, change the3000
in theSET PORT=3000
syntax equal to another port other than 3000