Reserve
This is a simple reservation system. The system supports user management, resource management, and reservation management, among other features.
Getting Started
Clone the project:
git clone https://github.com/csguojin/reserve
Configure the MySQL and Redis connection and other parameters:
vim ./config/config.yaml
Start the application:
go run main.go
If you are using Docker, you can build the Docker image for the project:
docker build -t reserve:latest .
docker run -p 8080:8080 reserve:latest
If you are using Docker Compose, you can easily deploy this project:
docker compose up -d
API
View the RESTful APIs of this project in Swagger Editor.