daedalus-developers / hrs

Hotel Reservation System
0 stars 1 forks source link

Hotel Reservation System

ERD v 0.1

image

Stacks used:

Development

Requirements

Copy .env.example to .env Using the following commands:

cp env.example .env

SMTP_HOST=smtp.example.com
SMTP_PORT=587
SMTP_USER=your_email@example.com
SMTP_PASSWORD=password

SERVER_HOST=http://localhost:3000 # set the port where your next app is running
DB_URL=postgres://postgres:postgres@locahost:5432/hrs # set your db url

Install Dependencies:

pnpm install

Run development server:

pnpm dev --turbo

Open the app in your browser:

https://localhost:3000

Deployment

WIP