This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-04-20
Channels
- # announcements (3)
- # babashka (7)
- # beginners (36)
- # calva (71)
- # cider (25)
- # clj-commons (5)
- # cljdoc (19)
- # cljs-dev (5)
- # clojure (223)
- # clojure-austin (2)
- # clojure-bay-area (1)
- # clojure-europe (31)
- # clojure-france (6)
- # clojure-nl (2)
- # clojure-norway (19)
- # clojure-spec (13)
- # clojure-uk (7)
- # clojurescript (127)
- # core-logic (2)
- # cursive (21)
- # datalevin (53)
- # datomic (9)
- # emacs (37)
- # events (1)
- # graphql (8)
- # jobs (12)
- # lsp (8)
- # off-topic (92)
- # pathom (49)
- # pedestal (1)
- # polylith (3)
- # re-frame (25)
- # releases (2)
- # sci (11)
- # shadow-cljs (13)
- # vim (10)
I am working on migrating an existing project to polylith.
I have so many bases that I want to put subdirectories under bases
. Is this possible?
like this,
/bases
/subdirectory-1
/base-1
/base-2
/subdirectory-2
/base-3
/base-4
I get an error when I run clojure -M:poly info
command, is there any way to configure that base-n
is base?Polylith offers a flat structure and does not support subdirectories for bases, components, and projects. If you want to group them, giving them a prefix could be an option.
👍 1