Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlossantos74/booking-system
Booking system for meetings
https://github.com/carlossantos74/booking-system
Last synced: 4 days ago
JSON representation
Booking system for meetings
- Host: GitHub
- URL: https://github.com/carlossantos74/booking-system
- Owner: carlossantos74
- Created: 2023-09-07T00:06:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-11T22:54:58.000Z (over 1 year ago)
- Last Synced: 2024-11-10T10:42:59.707Z (2 months ago)
- Language: TypeScript
- Homepage: https://booking-system-weld.vercel.app
- Size: 186 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Booking System
## Description
This is a booking system for meetings. It is a web application that allow users schedule meetings with other users and assign rooms to the meetings. The application is built using the following technologies:
- [React](https://reactjs.org/)
- [Redux](https://redux.js.org/)
- [Next.js](https://nextjs.org/)
- [Prisma](https://www.prisma.io/)
- [PostgreSQL](https://www.postgresql.org/)## Getting Started
### Prerequisites
- [Docker](https://www.docker.com/)
- [Docker Compose](https://docs.docker.com/compose/)
- [Node.js](https://nodejs.org/en/)### Run the application locally
1. Build the application
```bash
docker compose up --build
```2. Open the application in your browser
```bash
http://localhost:3000
```---
### Run the application in development mode
1. Build the application
```bash
docker compose up --build
```2. Install the dependencies
```bash
npm install
```3. Add the database url to the .env file
```bash
DATABASE_URL=postgresql://booking:uyg@xvp5WGD8wvd7pea@localhost:5432/booking-db
```4. Start the database
```bash
docker compose start postgres
```5. Run the migrations
```bash
npm run migrate
```6. Start the application
```bash
npm run dev
```7. Open the application in your browser
```bash
http://localhost:3000
```