Template for the project 2023 Winter Your project infomration and assigment https://docs.google.com/document/d/1NB0rCDMe5Ua_KcNPXDjWTwBU49EI74RehVgfxSBVoNg/edit?usp=sharing
Your project should be split into 2 folders:
- Backend
- Frontend
Each folder should have their own JS projects, so both of them will be have their own package.json, node_modules, .gitignore files etc.
The respository should include exact steps how to run your project. Also we need to be able to run the project on our systems. So please tests that you have all dependencies added to your package.json files and commited.
Don't forget to:
- Run some prettier on your code
- Clean this readme before you submit your project
TODO: Describe what is your application about.
TODO: Describe exact steps which needs to be done to run your application locally.
For example:
cd backend
and runnpm install
- ANY Extra steps to run backend
- Run
npm start
You can see your api in url http://localhost:xxxx/
Tip: (you will need to change your backend port number so it doesn't conflict with frontend port number)
cd frontend
and runnpm install
- ANY Extra steps to run frontend
- Run
npm start
You can see your project at http://localhost:3000/
TODO: If you have any additional infomration which you would like to share about the project.