0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-08 16:00:19 -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

2
.gitignore vendored
View file

@ -39,3 +39,5 @@ node_modules
/web /web
/_dump /_dump
/vendor/svgclean/bundle*.js /vendor/svgclean/bundle*.js
.calva

View file

@ -23,7 +23,8 @@
:dev :dev
{:extra-deps {: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 :shadow-cljs
{:main-opts ["-m" "shadow.cljs.devtools.cli"]} {:main-opts ["-m" "shadow.cljs.devtools.cli"]}

View file

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