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.
 
 
 

14 lines
279 B

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"
)