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:
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
|
||||
/web
|
||||
/_dump
|
||||
/vendor/svgclean/bundle*.js
|
||||
/vendor/svgclean/bundle*.js
|
||||
|
||||
.calva
|
||||
|
|
|
@ -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"]}
|
||||
|
|
|
@ -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"}
|
||||
|
||||
|
|
Loading…
Reference in a new issue