Skip to content

Commit e90a938

Browse files
committed
initial import
0 parents  commit e90a938

31 files changed

+735
-0
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/target
2+
/lib
3+
/classes
4+
/checkouts
5+
pom.xml
6+
*.jar
7+
*.class
8+
/.lein-*
9+
/.env
10+
*.log

.nrepl-port

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
56398

Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: lein with-profile production trampoline ring server

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# patronage-clj
2+
3+
FIXME
4+
5+
## Prerequisites
6+
7+
You will need [Leiningen][1] 2.0 or above installed.
8+
9+
[1]: https://github.com/technomancy/leiningen
10+
11+
## Running
12+
13+
To start a web server for the application, run:
14+
15+
lein ring server
16+
17+
## License
18+
19+
Copyright © 2013 FIXME

project.clj

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
(defproject
2+
patronage-clj
3+
"0.1.0-SNAPSHOT"
4+
:repl-options
5+
{:init-ns patronage-clj.repl}
6+
:dependencies
7+
[[com.h2database/h2 "1.3.174"]
8+
[ring-server "0.3.1"]
9+
[domina "1.0.2"]
10+
[org.clojure/clojurescript "0.0-2030"]
11+
[environ "0.4.0"]
12+
[com.taoensso/timbre "2.7.1"]
13+
[markdown-clj "0.9.35"]
14+
[prismatic/dommy "0.1.2"]
15+
[korma "0.3.0-RC6"]
16+
[com.taoensso/tower "2.0.1"]
17+
[org.clojure/clojure "1.5.1"]
18+
[selmer "0.5.4"]
19+
[cljs-ajax "0.2.2"]
20+
[log4j
21+
"1.2.17"
22+
:exclusions
23+
[javax.mail/mail
24+
javax.jms/jms
25+
com.sun.jdmk/jmxtools
26+
com.sun.jmx/jmxri]]
27+
[compojure "1.1.6"]
28+
[lib-noir "0.7.6"]
29+
[com.postspectacular/rotor "0.1.0"]]
30+
:cljsbuild
31+
{:builds
32+
[{:source-paths ["src-cljs"],
33+
:compiler
34+
{:pretty-print false,
35+
:output-to "resources/public/js/site.js",
36+
:optimizations :advanced}}]}
37+
:ring
38+
{:handler patronage-clj.handler/app,
39+
:init patronage-clj.handler/init,
40+
:destroy patronage-clj.handler/destroy}
41+
:profiles
42+
{:production
43+
{:ring
44+
{:open-browser? false, :stacktraces? false, :auto-reload? false}},
45+
:dev
46+
{:dependencies [[ring-mock "0.1.5"] [ring/ring-devel "1.2.1"]],
47+
:env {:selmer-dev true}}}
48+
:url
49+
"http://example.com/FIXME"
50+
:aot
51+
:all
52+
:plugins
53+
[[lein-ring "0.8.7"] [lein-environ "0.4.0"] [lein-cljsbuild "0.3.3"]]
54+
:description
55+
"FIXME: write description"
56+
:min-lein-version "2.0.0")

resources/public/css/bootstrap-theme.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/public/css/bootstrap.min.css

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/public/css/screen.css

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
html,
2+
body {
3+
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
4+
height: 100%;
5+
padding-top: 70px;
6+
}
7+
8+
.error {
9+
color: red;
10+
}
Binary file not shown.

0 commit comments

Comments
 (0)