Archived
Template
1
0
This repository has been archived on 2023-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Markus Tenghamn e586933a6b Improves documentation (#13)
* Documents all env variables and adds an example project

* Adds godoc comments

* Fixed package naming issue
2022-01-09 14:42:03 +01:00

24 lines
611 B
Go

// Package config defines the env configuration variables
package config
// Config defines all the configuration variables for the golang-base-project
type Config struct {
Port string
CookieSecret string
Database string
DatabaseHost string
DatabasePort string
DatabaseName string
DatabaseUsername string
DatabasePassword string
BaseURL string
SMTPUsername string
SMTPPassword string
SMTPHost string
SMTPPort string
SMTPSender string
RequestsPerMinute int
CacheParameter string
CacheMaxAge int
}