Let's make your planning session go online!
If you want to start project locally follow the instructions below.
node.js ^8.*.*
npm or yarn as package manager
First install packages in root folder of the project.
yarn install
Then go to /client
folder and repeat
cd client/
yarn install
Next you need to go to the package.json
in your /client
and change or add line to
"proxy": "http://localhost:5000",
This allow our create-react-app
application to know where our api is running (which port and domain if you have server on different machine).
After you finish just type in root
folder
yarn dev
And that's it!
jest, enzyme, sinon
To test type
yarn test
After you deploy this program into some kind of hosting you need to remember to change proxy
in our package.json
in /client/package.json
to
"proxy": "yourdomain",
- create-react-app - client side
- node.js - server
- socket.io - WebSockets
- Sebastian Ogarek - Main work - ProPanek
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details