0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-06 14:50:20 -05:00

Fix nrepl connection inside docker

This commit is contained in:
alonso.torres 2021-10-13 17:39:03 +02:00 committed by Andrey Antukh
parent 81a42ef1df
commit e00e501605
3 changed files with 6 additions and 3 deletions

4
.gitignore vendored
View file

@ -38,4 +38,6 @@ node_modules
/deploy
/web
/_dump
/vendor/svgclean/bundle*.js
/vendor/svgclean/bundle*.js
.calva

View file

@ -23,7 +23,8 @@
:dev
{:extra-deps
{thheller/shadow-cljs {:mvn/version "2.15.9"}}}
{thheller/shadow-cljs {:mvn/version "2.15.9"}
cider/cider-nrepl {:mvn/version "0.26.0"}}}
:shadow-cljs
{:main-opts ["-m" "shadow.cljs.devtools.cli"]}

View file

@ -1,6 +1,6 @@
{:deps {:aliases [:dev]}
:http {:port 3448}
:nrepl {:port 3447}
:nrepl {:port 3447 :host "0.0.0.0"}
:jvm-opts ["-Xmx700m" "-Xms100m" "-XX:+UseSerialGC" "-XX:-OmitStackTraceInFastThrow"]
:dev-http {8888 "classpath:public"}