A shared events app where users can add their own events and book other users events.
Clone the git repo and install the dependencies
npm i
Create a ENV variables MONGO_URI, JWT_SECRET_KEY, JWT_EXPIRATION_TIME
MONGO_URI = "mongodb://localhost:27017/testDB"
JWT_SECRET_KEY = "ultimatesecret"
JWT_EXPIRATION_TIME = 1
Run Backend in development mode
npm run dev
By default the backend will be running in port: 8000
Install frontend dependencies.
cd client
npm i
Run Frontend in development mode.
cd client
npm start
By default the Frontend will be running in port: 3000