mirror of
https://github.com/penpot/penpot.git
synced 2025-01-07 15:39:42 -05:00
✨ Fix nrepl connection inside docker
This commit is contained in:
parent
81a42ef1df
commit
e00e501605
3 changed files with 6 additions and 3 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -38,4 +38,6 @@ node_modules
|
||||||
/deploy
|
/deploy
|
||||||
/web
|
/web
|
||||||
/_dump
|
/_dump
|
||||||
/vendor/svgclean/bundle*.js
|
/vendor/svgclean/bundle*.js
|
||||||
|
|
||||||
|
.calva
|
||||||
|
|
|
@ -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"]}
|
||||||
|
|
|
@ -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"}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue