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

3 years ago
  1. package Variables
  2. const (
  3. ProjectRoot string = "/path/to/project/root"
  4. DbHost string = "localhost"
  5. DbPort int = 5432
  6. DbName string = "personal-website"
  7. DbUser string = "postgres"
  8. DbPass string = ""
  9. DbOpts string = "sslmode=disable"
  10. WebserverHost string = ":8080"
  11. )