PostgreSQL compatibility #5

Merged
arch merged 2 commits from postgres-database into main 2024-04-30 23:57:38 +01:00
Showing only changes of commit 9605a9d6f6 - Show all commits

View file

@ -23,11 +23,11 @@ import (
"github.com/go-enry/go-enry/v2"
"github.com/google/uuid"
_ "github.com/lib/pq"
"github.com/microcosm-cc/bluemonday"
"github.com/niklasfasching/go-org/org"
"github.com/russross/blackfriday"
_ "modernc.org/sqlite"
_ "github.com/lib/pq"
"tailscale.com/client/tailscale"
"tailscale.com/client/tailscale/apitype"
"tailscale.com/ipn"
@ -826,7 +826,7 @@ func (mch MixedCriticalityHandler) ServeHTTP(w http.ResponseWriter, r *http.Requ
func openDB(dir string, databaseUrl string) (*sql.DB, error) {
dbtype := "sqlite"
dbpath := "file:"+filepath.Join(dir, "data.db")
dbpath := "file:" + filepath.Join(dir, "data.db")
if databaseUrl != "" {
dbtype = "postgres"
dbpath = databaseUrl