A small project that collects various nice things to get started with Go Web Development.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-web-starter-kit/config_example.json

30 lines
543 B

{
"Server": {
"Admin": "admin",
"Views": "./views",
"Layouts": "layouts/main",
"HostPort": "127.0.0.1:7001"
},
"Database": {
"Driver": "sqlite3",
"Url": "db.sqlite3"
},
"Redis": {
"HostPort": "localhost:6379",
"Password": "",
"DB": 0
},
"Email": {
"Host": "localhost",
"Port": 1025,
"XMailer": "nunya-business",
"UserAgent": "nunya-business",
"RedisQueue": "email",
"Templates": "emails"
},
"Paypal": {
"ClientID": "test-client-id",
"SecretID": "test-secret"
}
}