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

26 lines
447 B

{
"Server": {
"Admin": "admin",
"Views": "./views",
"Layouts": "layouts/main",
"Port": ":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"
}
}