fix incorrect key for http server config
This commit is contained in:
parent
c3fa6773b5
commit
b1a35415ce
|
@ -1,4 +1,4 @@
|
|||
(defproject net.gered/lein-template.simple-web-app "0.5.0-SNAPSHOT"
|
||||
(defproject net.gered/lein-template.simple-web-app "0.4.1-SNAPSHOT"
|
||||
:description "Simple Clojure / ClojureScript web app project template."
|
||||
:url "https://github.com/gered/simple-web-app-template"
|
||||
:license {:name "MIT License"
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
:start
|
||||
(let [{:keys [port bind]
|
||||
:or {port 8080
|
||||
bind "0.0.0.0"}} (:http-server config)
|
||||
bind "0.0.0.0"}} (:http config)
|
||||
server (http-kit/run-server
|
||||
(as-> #'handler h
|
||||
(if (:dev? config) (wrap-reload h) h))
|
||||
|
|
Loading…
Reference in a new issue