Skip to content

PulkitAsri/venue-booking-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started

Installation

  1. Clone the repo

BACKEND

@ Backend/venue-booking-system-backend

  1. Install NPM packages
    npm install
  2. DB Setup
  • install and setup postgres DB if not
  • create a db named venue_system
    • Steps:
      • open postgres
          psql
      • then
        create database `venue_system`;
  • create a user with name pulkit and password pulkit
    • Steps:
      • make user
        create user pulkit with password 'pulkit'
      • then, grant all privileges to that user
        grant all on database venue_system to pulkit;
  • exit
  1. Migrate the DB
  • npm run migrate

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published