forked from clj-nakano/situated-program-challenge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
18 lines (18 loc) · 942 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject situated-program-challenge "0.1.0-SNAPSHOT"
:description "Spec for Situated Program Challenge at clj-nakano #2
https://clj-nakano.connpass.com/event/71884/"
:url "https://github.com/clj-nakano/situated-program-challenge"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.8.1"
:dependencies [[org.clojure/clojure "1.8.0"]
[migratus "1.0.3"]
[com.fzakaria/slf4j-timbre "0.3.2"]
[com.taoensso/timbre "4.10.0"]
[org.postgresql/postgresql "9.4-1206-jdbc42"]]
:migratus {:store :database
:migration-dir "migrations"
:init-script "init.sql"
:db "postgres://meetup:password123@localhost:5432/meetup"}
:profiles {:dev {:source-paths ["dev"]
:plugins [[migratus-lein "0.5.4"]]}})