Skip to content

Commit 61f68ce

Browse files
committed
Initial commit
0 parents  commit 61f68ce

File tree

20 files changed

+46693
-0
lines changed

20 files changed

+46693
-0
lines changed

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/target
2+
/lib
3+
/classes
4+
/checkouts
5+
/pg
6+
pom.xml
7+
*.jar
8+
*.class
9+
.lein-deps-sum
10+
.lein-failures
11+
.lein-plugins
12+
.lein-env
13+
.lein-repl-history
14+
*~
15+
libpeerconnection.log

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# CLJSFiddle
2+
3+
## License
4+
5+
Copyright © 2013 Jonas Enlund
6+
7+
Distributed under the Eclipse Public License, the same as Clojure.

project.clj

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
(defproject cljsfiddle "0.1.0-SNAPSHOT"
2+
:description "CLJSFiddle"
3+
:url "http://cljsfiddle.net"
4+
:dependencies [[org.clojure/clojure "1.5.1"]
5+
[org.clojure/clojurescript "0.0-1853"]
6+
[org.clojure/java.jdbc "0.3.0-alpha4"]
7+
[postgresql "9.1-901.jdbc4"]
8+
[compojure "1.1.5"]
9+
[clj-http "0.7.6"]
10+
[cheshire "5.2.0"]
11+
[hiccup "1.0.4"]
12+
[environ "0.4.0"]
13+
[hylla "0.1.0"]
14+
[domina "1.0.1"]]
15+
:source-paths ["src/clj" "src/cljs"]
16+
:plugins [[lein-ring "0.8.6"]
17+
[lein-cljsbuild "0.3.2"]]
18+
:profiles {:dev {:dependencies [[ring-mock "0.1.5"]]}}
19+
:ring {:handler cljsfiddle.handler/app}
20+
:cljsbuild {:builds [{:source-paths ["src/cljs"]
21+
:compiler {:output-to "resources/public/js/app.js"
22+
:optimizations :whitespace
23+
:pretty-print true}}]})

0 commit comments

Comments
 (0)