OpenGym is a web app designed to give CMU students access to occupancy levels of CMU facilities.
-
Navigate to the
server
directory and run the following command:npm install
-
Similarly, go to the
frontend
directory and run:npm install
-
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>
-
In the
server
directory, run the development server:npm run dev
-
In the
frontend
directory, start the frontend application:npm run dev