Workspace created.

This commit is contained in:
Oliver Marks 2023-10-28 13:18:00 +01:00
commit 51974fb8d4
10 changed files with 85 additions and 0 deletions

36
.gitignore vendored Normal file
View File

@ -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

12
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,12 @@
{
"calva.replConnectSequences": [
{
"projectType": "deps.edn",
"name": "static-sites",
"cljsType": "none",
"menuSelections": {
"cljAliases": ["dev", "test", "+default"]
}
}
]
}

1
bases/.keep Normal file
View File

@ -0,0 +1 @@

1
components/.keep Normal file
View File

@ -0,0 +1 @@

11
deps.edn Normal file
View File

@ -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"}}}}}

1
development/src/.keep Normal file
View File

@ -0,0 +1 @@

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

1
projects/.keep Normal file
View File

@ -0,0 +1 @@

13
readme.md Normal file
View File

@ -0,0 +1,13 @@
<img src="logo.png" width="30%" alt="Polylith" id="logo">
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).
<h1>static-sites</h1>
<p>Add your workspace documentation here...</p>

9
workspace.edn Normal file
View File

@ -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"}}}