summaryrefslogtreecommitdiff
path: root/resources/config.sexp.sample
diff options
context:
space:
mode:
Diffstat (limited to 'resources/config.sexp.sample')
-rw-r--r--resources/config.sexp.sample7
1 files changed, 4 insertions, 3 deletions
diff --git a/resources/config.sexp.sample b/resources/config.sexp.sample
index 804117d..a1e3a36 100644
--- a/resources/config.sexp.sample
+++ b/resources/config.sexp.sample
@@ -1,8 +1,9 @@
;;;; -*- mode: clojure; coding: utf-8 -*-
-{:database {:classname "org.postgresql.Driver"
- :subprotocol "postgresql"
- :subname "//localhost:5432/benki"
+{:database {;; NOTE: PostgreSQL is the only supported RDBMS.
+ :host "localhost"
+ :port 5432
+ :database "benki"
:user "benki"
:password ""}
:websocket-base "ws://localhost:3001"