Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shaggyyy2002/hotel-reservation
https://github.com/shaggyyy2002/hotel-reservation
Last synced: about 17 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/shaggyyy2002/hotel-reservation
- Owner: shaggyyy2002
- Created: 2024-04-28T16:45:27.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-04-28T16:47:08.000Z (6 months ago)
- Last Synced: 2024-04-28T17:45:17.649Z (6 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Hotel Reservation Backend API
## Project Outline
- users -> book rooms
- admins -> check rsvp, bookings
- Auth & Authorization -> JWT Tokens
- Hotels -> CRUD API
- Rooms -> CRUD API
- Scripts -> Database Management -> Seeding, Migration## Resources
### MongoDB DriverDocumentation:
```
https://www.mongodb.com/docs/drivers/go/current/quick-start/
```Installing MongoDB Client
```
go get go.mongodb.org/mongo-driver/mongo
```### GoFiber
Documentation:
```
https://docs.gofiber.io/
```Installing GoFiber:
```
go get github.com/gofiber/fiber/v2
```