package Variables
|
|
|
|
const (
|
|
ProjectRoot string = "/path/to/project/root"
|
|
|
|
DbHost string = "localhost"
|
|
DbPort int = 5432
|
|
DbName string = "personal-website"
|
|
DbUser string = "postgres"
|
|
DbPass string = ""
|
|
DbOpts string = "sslmode=disable"
|
|
|
|
WebserverHost string = ":8080"
|
|
)
|