Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 826 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 826 Bytes

TMS

Tournament Management System - web app for hosting and participating in online competitive events
Status: Development in Progress

Developers

Usage

  1. Create backend/.env file:
MONGODB_URI=<your_mongodb_uri>
ACCESS_TOKEN_SECRET=<your_server_token>
  1. Run the project: npm run dev (in project root)

Installation

  1. Clone the repository and go to its directory
  2. Install root packages: npm install
  3. Install backend packages: cd backend && npm install && cd ..
  4. Install frontend packages: cd frontend && npm install && cd ..