23 lines
273 B
TOML
Executable File
23 lines
273 B
TOML
Executable File
[Http]
|
|
Port = 9800
|
|
|
|
[App]
|
|
Mode = "development"
|
|
|
|
[SQLite]
|
|
File = "sqlite.db"
|
|
|
|
|
|
[MySQL]
|
|
Host = "localhost"
|
|
Port = 3306
|
|
Database = "test"
|
|
Username = "root"
|
|
Password = "admin"
|
|
|
|
[Swagger]
|
|
BaseRoute = "doc"
|
|
Title = "Api"
|
|
Description = "Api Docs"
|
|
BasePath= "/v1"
|
|
Version = "1.0.0" |