initial
This commit is contained in:
parent
4bc9a6cee3
commit
f1ff72ecb5
3 changed files with 24 additions and 0 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
/.settings/
|
||||||
|
/bin/
|
||||||
|
/target/
|
||||||
|
/.lein-failures
|
||||||
|
/.vscode/
|
8
README.md
Normal file
8
README.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# bootstrap-io
|
||||||
|
|
||||||
|
## init submodule
|
||||||
|
```
|
||||||
|
git submodule add git@github.com:jerger/cryogen-bootstrap.git
|
||||||
|
ln -s `(pwd)`/cryogen-bootstrap/themes ./resources/templates
|
||||||
|
|
||||||
|
```
|
11
project.clj
Normal file
11
project.clj
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
(defproject dda/cryogen-bootstrap "0.1.0-SNAPSHOT"
|
||||||
|
:description "bootstrap theme for cryogen"
|
||||||
|
:license {:name "Apache2.0"}
|
||||||
|
:dependencies [[org.clojure/clojure "1.9.0"]
|
||||||
|
[ring/ring-devel "1.7.1"]
|
||||||
|
[compojure "1.6.1"]
|
||||||
|
[ring-server "0.5.0"]
|
||||||
|
[dda/cryogen-core "0.1.53"]
|
||||||
|
[dda/cryogen-markdown "0.1.6"]]
|
||||||
|
:repositories [["clojars" :clojars]]
|
||||||
|
:deploy-repositories [["clojars" :clojars]])
|
Loading…
Reference in a new issue