# bluebell **Repository Path**: xiaonqedu/bluebell ## Basic Information - **Project Name**: bluebell - **Description**: gin框架学习到实践 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-06-15 - **Last Updated**: 2023-01-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README - gin框架使用 ```bash # 1)修改./conf/config.yaml中mysql和redis配置信息 # 2)创建数据库 create database bluebell charset utf8; # 3)创建表并导入数据 mysql> source /Users/xiaonaiqiang1/work/bluebell/models/create_table.sql # 4)启动项目 go run main.go ./conf/config.yaml # 5)访问服务 http://127.0.0.1:8084/ ```