Workspace created.
This commit is contained in:
commit
51974fb8d4
|
@ -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
|
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"calva.replConnectSequences": [
|
||||||
|
{
|
||||||
|
"projectType": "deps.edn",
|
||||||
|
"name": "static-sites",
|
||||||
|
"cljsType": "none",
|
||||||
|
"menuSelections": {
|
||||||
|
"cljAliases": ["dev", "test", "+default"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
|
|
@ -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"}}}}}
|
|
@ -0,0 +1 @@
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
|
|
@ -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>
|
|
@ -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"}}}
|
Loading…
Reference in New Issue