Skip to content

Instantly share code, notes, and snippets.

@ertugrulcetin
Created April 3, 2020 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ertugrulcetin/2a877ccfa0446694a876bccdd9c44e63 to your computer and use it in GitHub Desktop.
Save ertugrulcetin/2a877ccfa0446694a876bccdd9c44e63 to your computer and use it in GitHub Desktop.
project.clj - Clojure ile Örnek Web Uygulaması
(defproject clj-web-app "0.1.0-SNAPSHOT"
:description "Clojure ile örnek web uygulama"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.0"]
[ring "1.8.0"]
[patika "0.1.10"]]
:main ^:skip-aot clj-web-app.core
:repl-options {:init-ns clj-web-app.core})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment