Application to manage hackathons internally for a company, where users can:
- login with their employee id or register with new employee id. Format for employee id followed: 'HN' or 'hn' followed by
-{any numeric value}
. - add/ create challenges.
- can see list of challenges created by others as well.
- can upvote challenges created by others.
- sort challenges based on vote count and creation time in ascending and descending order.
MERN stack application.
- MongoDB
- ExpressJS
- ReactJS
- NodeJS
- Axios
- Ant-design
- React-router
- Concurrently
- Clone the repository.
- Change directory to the cloned repository folder and run
npm i
to install backend dependencies. - After installing backend dependencies, change directory to client folder.
- Now run
npm i
for installing frontend dependencies. - After installing both frontend and backend dependencies, change directory back to where
server.js
file is located, that is our backend directory. - From this directory, run
npm run dev
to run both client and server concurrently without the need to run them separately in different terminals.