init project
Some checks failed
CI / build (push) Failing after 8m49s

This commit is contained in:
2025-11-13 16:53:08 +08:00
commit 937a3cea60
25 changed files with 1858 additions and 0 deletions

18
config/application.yml Normal file
View File

@@ -0,0 +1,18 @@
server:
addr: :8888
metrics: true
healthz: true
readyz: true
pprof: true
logger:
# 日志存放路径,关闭控制台日志后,日志文件存放位置
# path: temp/logs
# 日志输出file文件default命令行其他命令行
stdout: default #控制台日志,启用后,不输出到文件
# 日志等级, trace, debug, info, warn, error, fatal
level: info
# 日志格式 json json格式
json: false
database:
driver: mysql
source: 'root:123456@tcp(127.0.0.1:3306)/service_http?charset=utf8&parseTime=True&loc=Local&timeout=1000ms'