diff --git a/env/prod/resources/config.edn b/env/prod/resources/config.edn index f5ce248..2a92f75 100644 --- a/env/prod/resources/config.edn +++ b/env/prod/resources/config.edn @@ -1,3 +1,6 @@ -{:production true - :port 3000 - :server-address "http://commiteth.com"} +{ + :production true + :port 3000 + :nrepl-port 7000 + :server-address "https://commiteth.com" +} diff --git a/env/test/resources/config.edn b/env/test/resources/config.edn index 40d4a13..6e65a3d 100644 --- a/env/test/resources/config.edn +++ b/env/test/resources/config.edn @@ -1,6 +1,4 @@ -{:test true - :port 3001 - ;; when :nrepl-port is set the application starts the nREPL server on load - :nrepl-port 7001 - :jdbc-database-url "jdbc:postgresql://localhost/commiteth?user=commiteth&password=commiteth" - :server-address "http://localhost:3000"} +{ + :test true + :jdbc-database-url "jdbc:postgresql://localhost/commiteth_test?user=commiteth&password=commiteth" +}