Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 1.01 KB

README.md

File metadata and controls

53 lines (41 loc) · 1.01 KB

EventBiz

A shared events app where users can add their own events and book other users events.

Backend Express + GraphQl + MongoDB

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

Frontend React + Semantic-UI-React

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

Images

Landing Page:

Landing Page

Login:

Login Page

Register:

Register Page

Dashboard:

Dashboard Page

User Bookings:

User Bookings Page