Compare commits
2 Commits
d3efb1c8dd
...
808bac398a
Author | SHA1 | Date | |
---|---|---|---|
808bac398a | |||
9a1b2c98a3 |
@ -11,7 +11,7 @@ var pool *pgxpool.Pool
|
||||
|
||||
func getDbPool() *pgxpool.Pool {
|
||||
// Setup Database
|
||||
dburl := "postgres://" + os.Getenv("POSTGRES_USER") + ":" +u os.Getenv("POSTGRES_PASSWORD") + "@" + os.Getenv("POSTGRES_HOSTNAME") + "/" + os.Getenv("POSTGRES_DB")
|
||||
dburl := "postgres://" + os.Getenv("POSTGRES_USER") + ":" + os.Getenv("POSTGRES_PASSWORD") + "@" + os.Getenv("POSTGRES_HOSTNAME") + "/" + os.Getenv("POSTGRES_DB")
|
||||
pool, err := pgxpool.Connect(context.Background(), dburl)
|
||||
if err != nil {
|
||||
log.Fatal("Unable to connect to database:", err)
|
||||
|
@ -383,7 +383,7 @@ func getGlobalGraph(w http.ResponseWriter, r *http.Request) {
|
||||
|
||||
line.SetXAxis(dates).
|
||||
AddSeries("Post Count", generateLineItems(counts)).
|
||||
SetSeriesOptions(charts.WithLineChartOpts(opts.LineChart{Smooth: false}))
|
||||
SetSeriesOptions(charts.WithLineChartOpts(opts.LineChart{Smooth: opts.Bool(false)}))
|
||||
|
||||
line.Render(w)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user