commit 51974fb8d45e16dca035c67575fd34ee90d0cc90 Author: Oliver Marks Date: Sat Oct 28 13:18:00 2023 +0100 Workspace created. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6979b1a --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +**/classes +**/target +**/.artifacts +**/.cpcache +**/.DS_Store +**/.gradle + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/shelf +.idea/**/statistic.xml +.idea/dictionaries/** +.idea/libraries/** + +# File-based project format +*.iws +*.ipr + +# Cursive Clojure plugin +.idea/replstate.xml +*.iml + +/example/example/** +artifacts +projects/**/pom.xml + +# nrepl +.nrepl-port + +# clojure-lsp +.lsp/sqlite*.db + +# Calva VS Code Extension +.calva/output-window/output.calva-repl diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..1dafec7 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,12 @@ +{ + "calva.replConnectSequences": [ + { + "projectType": "deps.edn", + "name": "static-sites", + "cljsType": "none", + "menuSelections": { + "cljAliases": ["dev", "test", "+default"] + } + } + ] +} diff --git a/bases/.keep b/bases/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/bases/.keep @@ -0,0 +1 @@ + diff --git a/components/.keep b/components/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/components/.keep @@ -0,0 +1 @@ + diff --git a/deps.edn b/deps.edn new file mode 100644 index 0000000..3ac9784 --- /dev/null +++ b/deps.edn @@ -0,0 +1,11 @@ +{:aliases {:dev {:extra-paths ["development/src"] + :extra-deps {org.clojure/clojure {:mvn/version "1.10.3"} + org.clojure/tools.deps.alpha {:mvn/version "0.12.1003"}}} + + :test {:extra-paths []} + + :poly {:main-opts ["-m" "polylith.clj.core.poly-cli.core"] + :extra-deps {polyfy/polylith + {:git/url "https://github.com/polyfy/polylith" + :sha "b3dcc8bbb315dfd2a9b8d011c3195c4b617ffd0b" + :deps/root "projects/poly"}}}}} diff --git a/development/src/.keep b/development/src/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/development/src/.keep @@ -0,0 +1 @@ + diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..f0bca2f Binary files /dev/null and b/logo.png differ diff --git a/projects/.keep b/projects/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/projects/.keep @@ -0,0 +1 @@ + diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..c17c996 --- /dev/null +++ b/readme.md @@ -0,0 +1,13 @@ + + +The Polylith documentation can be found here: + +- The [high-level documentation](https://polylith.gitbook.io/polylith) +- The [Polylith Tool documentation](https://github.com/polyfy/polylith) +- The [RealWorld example app documentation](https://github.com/furkan3ayraktar/clojure-polylith-realworld-example-app) + +You can also get in touch with the Polylith Team via our [forum](https://polylith.freeflarum.com) or on [Slack](https://clojurians.slack.com/archives/C013B7MQHJQ). + +

static-sites

+ +

Add your workspace documentation here...

diff --git a/workspace.edn b/workspace.edn new file mode 100644 index 0000000..17dcdf5 --- /dev/null +++ b/workspace.edn @@ -0,0 +1,9 @@ +{:top-namespace "com.oly.static-sites" + :interface-ns "interface" + :default-profile-name "default" + :compact-views #{} + :vcs {:name "git" + :auto-add false} + :tag-patterns {:stable "stable-*" + :release "v[0-9]*"} + :projects {"development" {:alias "dev"}}}