You have been asked to develop a small application for FreshWorks Studio. We want to learn about how you think, communicate and code.
- Clone the repository:
https://github.com/LeonTenko/freshworks-full-stack-selection-test.git
- Navigate to the main folder:
cd freshworks-full-stack-selection-test
- Install packages:
npm install
- Navigate to the client (forntend) folder:
cd client
- Install packages:
npm install
- Navigate back to the main folder:
cd ..
- Run both front and back-end servers concurrently:
npm run dev
Frontend: :3000 Backend: :5000
If port :5000 is in use, please change the frontend PROXY to your backend port in
client/package.json
"proxy": "http://localhost:<YOUR PORT>"
Uses NodeMon package to run the server. NodeMon allows the server to refresh every time there's a change in code.
Starts the frontend (React) server separately on port 3000 by default.
Starts both frontend and backend servers using the Concurrently package.