Skip to content
forked from NicoOgno/Venuee

Venuee was created as a response to the need in the market for convenient event space booking

Notifications You must be signed in to change notification settings

AshMudra/Venuee

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Venuee

Venuee was created as a response to the need in the market for convenient event space booking. This new product takes the long process of reaching out to multiple venues separately to find the right date and price, and instead puts all matches from your search in one place. Vendors and users can utilize the in-chat feature, update their profile settings, and easily book a venue with the click of a button.

venuee main

Used Tech Stack

Frontend

  • React Framework
  • CSS for styling

Backend

  • Node.js with Express.js for the Server
  • JWT for authentication
  • Postgresql and Sequelize as the Database

register

Getting Started

Frontend

  • Make sure Node.js is installed on your machine
  • Change directory into client folder
  • Add your credentials to your .env file, following the example in .env.example
  • To install dependencies, run: npm install
  • After dependencies have been installed, start the client: npm start

Backend

  • Change directory into server folder
  • Following the example in .env.example, add your credentials to your .env file
  • To install the backend dependencies, run: npm install
  • Run the seed file to populate the database with filler data: node seed
  • Start the server: nodemon --> starts the node express server

Database

  • We used pgAdmin4 as our orm
  • Add your pgAdmin4 username and password to your backend .env file
  • The database will automatically be connected when you start the server
  • note - you can change the sync.force property in the server's index.js with these options: When 'false', the 'nodemon' command will add the seed data to any data already existing in the database. When 'true', the 'nodemon' command will delete everything in the database, and then add the seed data to the empty database.

API Endpoints

API Method Endpoint Status
📝 Users
Register User POST /user/register 201
User Login POST /user/login 200
Get User Profile GET /user/find 200
Delete User Profile DELETE /user/find 204
🧑‍🏫 Vendors
Register Vendor POST /vendor/register 201
Vendor Login POST /vendor/login 200
Get Vendor Profile GET /vendor/find 200
Get Vendor By Name POST /vendor/name 200
Get Available Vendors GET /vendor/availability 200
🙋‍♀️ Reservations
Create User Reservation POST /reservation/ 200
Create Vendor Reservation POST /reservation/unavailable 200
Get A User's Reservations GET /reservation/user 200
Get A Vendor's Reservations GET /reservation/vendor 200
Delete Reservation DELETE /reservation/delete/:id 200

Credit

Venuee was built by:

About

Venuee was created as a response to the need in the market for convenient event space booking

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 67.1%
  • CSS 31.5%
  • HTML 1.3%
  • Shell 0.1%