commit fc27b38aaf4e3903fd6b8dd96df8a346b4b425ec Author: Tovi Jaeschke-Rogers Date: Sun Jun 13 11:59:41 2021 +0930 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..adde5db --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +Variables/Variables.go diff --git a/Variables/Variables.go.sample b/Variables/Variables.go.sample new file mode 100644 index 0000000..7533f10 --- /dev/null +++ b/Variables/Variables.go.sample @@ -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" +)