This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-06-16
Channels
- # announcements (8)
- # aws (28)
- # babashka (26)
- # beginners (125)
- # calva (18)
- # chlorine-clover (2)
- # cider (12)
- # cljs-dev (6)
- # cljsrn (4)
- # clojure (134)
- # clojure-europe (31)
- # clojure-italy (2)
- # clojure-nl (14)
- # clojure-uk (83)
- # clojurescript (81)
- # conjure (4)
- # cursive (2)
- # datomic (145)
- # emacs (13)
- # events (3)
- # figwheel-main (14)
- # fulcro (30)
- # graalvm (23)
- # graphql (15)
- # helix (21)
- # jackdaw (20)
- # juxt (1)
- # lambdaisland (4)
- # leiningen (2)
- # malli (12)
- # meander (22)
- # observability (22)
- # off-topic (27)
- # pedestal (3)
- # re-frame (12)
- # reitit (1)
- # releases (2)
- # rewrite-clj (3)
- # shadow-cljs (67)
- # spacemacs (7)
- # sql (1)
- # tools-deps (19)
- # unrepl (2)
- # xtdb (25)
hello,
I have a web server app with a main page and serving some files from the resources (using duct framework). Among these files (which are located in the resource directory of my project) there are some located under a hidden folder (eg: resources/my-project/public/.well-known/assetlinks.json).
When I use : `lein run` to launch the server, the given file are served correctly under localhost:3000/.well-known/assetlinks.json
However, when using the command :
lein uberjar
java -jar target/my-project-standalone.jar
=> all files located under a non hidden directory are served but NOT the ones under the hidden directory.
=> when running unzip -l my-project-standalone.jar
I cannot see the hidden directory files either.
Any ideas on what’s going on ?
Thanks