Skip to content

Commit

Permalink
Updated sample config.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryugi committed May 24, 2017
1 parent d0c3788 commit 324d737
Showing 1 changed file with 35 additions and 15 deletions.
50 changes: 35 additions & 15 deletions config/sample/config.edn
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,38 @@
:selmer-caching? false
:persistence :sqlite
:persistence-strategies {}
:sqlite {:subprotocol "sqlite"
:subname "var/data/timi.db"}
:authentication :single-user
:single-user {:username "Alice"}
:log {:level :debug
:ns [timi
ring
compojure
leiningen
org.httpkit
org.clojure]
:http-requests? true
:http-skip "/dist.*|/assets.*"}
:httpd {:port 5099
:host "localhost"}}
:sqlite {
:subprotocol "sqlite"
:subname "var/data/timi.db"}
:authentication :github
:github {
:client-id "cc0717f548def9323325"
:client-secret "e5767bcb33767247cc4351fb69741ec1820a693f"}
:log {
:level :debug
:ns [timi
ring
compojure
leiningen
org.httpkit
org.clojure]
:http-requests? true
:http-skip "/dist.*|/assets.*"}
:httpd {
:port 5098
:host "localhost"}
:repl {
:log {
:level :debug
:ns [timi]}}
:cli {
:server {
:host "localhost"
:port 5097
:log {
:level :debug
:ns [timi.server.cli]}}
:client {
:log {
:level :info
:ns [timi.client.cli]}}}}

0 comments on commit 324d737

Please sign in to comment.