Browse Source

Initial commit

pull/1/head
Tovi Jaeschke-Rogers 3 years ago
commit
fc27b38aaf
2 changed files with 15 additions and 0 deletions
  1. +1
    -0
      .gitignore
  2. +14
    -0
      Variables/Variables.go.sample

+ 1
- 0
.gitignore View File

@ -0,0 +1 @@
Variables/Variables.go

+ 14
- 0
Variables/Variables.go.sample View File

@ -0,0 +1,14 @@
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"
)

Loading…
Cancel
Save