Skip to content

cmubtg/open-gym

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenGym

OpenGym is a web app designed to give CMU students access to occupancy levels of CMU facilities.

Getting Started

  1. Navigate to the server directory and run the following command:

    npm install
  2. Similarly, go to the frontend directory and run:

    npm install
  3. In the server folder, add a .env file with the following content, replacing <port> and <uri> with your desired values:

    PORT=<port>
    MONGO_URI=<uri>
  4. In the server directory, run the development server:

    npm run dev
  5. In the frontend directory, start the frontend application:

    npm run dev