diff options
| author | Samuel Johnson <[email protected]> | 2025-11-23 23:52:30 -0500 |
|---|---|---|
| committer | Samuel Johnson <[email protected]> | 2025-11-23 23:52:30 -0500 |
| commit | 1692aea0951f1d46af01211bd3e32920c443505f (patch) | |
| tree | 07e8a77a2f3eb1852289ebb0ed63154c3329c5b0 /cmd/web/main.go | |
| parent | a431c6737f230be70c0fa44e5b30337b044db6fb (diff) | |
Add markdown parsing endpoint
Diffstat (limited to 'cmd/web/main.go')
| -rw-r--r-- | cmd/web/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/web/main.go b/cmd/web/main.go index 246abeb..619cc93 100644 --- a/cmd/web/main.go +++ b/cmd/web/main.go @@ -27,6 +27,7 @@ func main() { app.AudioDir = os.Getenv("audio_dir") app.Env.Webmaster = os.Getenv("webmaster") + app.Env.Db.Name = os.Getenv("db_name") app.Env.Db.Username = os.Getenv("db_user") app.Env.Db.Password = os.Getenv("db_pass") app.Env.AppPort, err = strconv.ParseUint(os.Getenv("web_port"), 10, 64) |
