Merge branch 'master' into datomic

This commit is contained in:
BC
2018-08-10 06:59:37 -07:00
3 changed files with 3 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ services:
environment:
config: /usr/local/config/prod.edn
VIRTUAL_HOST: app.integreatconsult.com
VIRTUAL_PORT: 3000
LETSENCRYPT_HOST: staging.app.integreatconsult.com,app.integreatconsult.com
LETSENCRYPT_EMAIL: le@brycecovertoperations.com
database:

View File

@@ -26,6 +26,7 @@ services:
environment:
config: /usr/local/config/staging.edn
VIRTUAL_HOST: staging.app.integreatconsult.com
VIRTUAL_PORT: 3000
LETSENCRYPT_HOST: staging.app.integreatconsult.com
LETSENCRYPT_EMAIL: le@brycecovertoperations.com
database:

View File

@@ -11,7 +11,7 @@
(ns-resolve 'cider.nrepl 'cider-nrepl-handler))
(defn -main [& args]
(start-server :port 9000 :bind "localhost" :handler (cider-nrepl-handler))
(start-server :port 9000 :bind "0.0.0.0" :handler (cider-nrepl-handler))
(let [port (Integer/parseInt (or (env :port) "3000"))]
#_(future (always-process-sqs))
(run-jetty app {:port port :join? false})))