Tournament Management System - web app for hosting and participating in online competitive events
Status: Development in Progress
- Create
backend/.env
file:
MONGODB_URI=<your_mongodb_uri>
ACCESS_TOKEN_SECRET=<your_server_token>
- Run the project:
npm run dev
(in project root)
- Clone the repository and go to its directory
- Install root packages:
npm install
- Install backend packages:
cd backend && npm install && cd ..
- Install frontend packages:
cd frontend && npm install && cd ..