# go-admin **Repository Path**: chenbool/go-admin ## Basic Information - **Project Name**: go-admin - **Description**: No description available - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-22 - **Last Updated**: 2025-10-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # go-admin ## Project Introduction This is a Go backend management system project developed based on the Gin framework. The project has a simple structure, is easy to extend, and is suitable as a basic framework for various management systems. ## Technology Stack - Go 1.25.3 - Gin Web Framework ## Project Structure ``` go_admin/ ├── main.go # Main program entry ├── go.mod # Go module dependency management ├── go.sum # Dependency verification file ├── router/ │ └── app.go # Router configuration └── README.md # Project documentation ``` ## Features - High-performance HTTP service based on Gin framework - Clean project structure, easy to extend - Built-in logging and recovery middleware ## Installation and Running ### 1. Install Dependencies ```bash go mod tidy ``` ### 2. Run the Project ```bash go run main.go ``` ## API Interface After starting the service, it listens on port 8081 by default. The project is currently in its initial stage and can be extended with routes and features according to requirements. ## Development Guide 1. You can configure routes and middleware in `router/app.go` 2. You can create new modules and features based on business requirements ## Contribution Guide 1. Fork this repository 2. Create a feature branch (git checkout -b feature/AmazingFeature) 3. Commit your changes (git commit -m 'Add some AmazingFeature') 4. Push to the branch (git push origin feature/AmazingFeature) 5. Open a Pull Request ## License This project is licensed under the MIT License