Introduction • Installation • Running the App
Plan, Record and Review your weekly schedule
-
Easy to Use
In just a few clicks, you can plan out your schedule for the week to follow!
-
Focus on What Matters
From your planned out time schedule, you can spend more time focusing on your studies!
- Download the repository
git clone https://github.com/GDSCUTM-CommunityProjects/UTimeManager
- Install the following requirements
- Yarn >= 2+
- Node >= 14.17.0
- Install the dependencies for the client
cd client
yarn install
- Install the dependencies for the server
cd backend
yarn install
- Running the client
yarn run start
- Setting up the server
.env
file
JWT_SECRET="YOUR JWT SECRET"
MONGO_URI="YOUR MONGO URI"
NODE_ENV="YOUR NODE ENVIRONMENT"
PORT="SERVER PORT"
- Running the server
yarn run start
Note: The server will fail to start if the server can't connec to your Mongo database.
The client and server will be listening and serving on port 3000
and 5000
respectively.