Skip to content
Snippets Groups Projects
Commit 93fd5863 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

first commit

parents
Branches
Tags
No related merge requests found
/target
/classes
/checkouts
pom.xml
pom.xml.asc
*.jar
*.class
/.lein-*
/.nrepl-port
.hgignore
.hg/
# metabase-init
FIXME: description
## Installation
Download from http://example.com/FIXME.
## Usage
FIXME: explanation
$ java -jar metabase-init-0.1.0-standalone.jar [args]
## Options
FIXME: listing of options this app accepts.
## Examples
...
### Bugs
...
### Any Other Sections
### That You Think
### Might be Useful
## License
Copyright © 2015 FIXME
Distributed under the Eclipse Public License either version 1.0 or (at
your option) any later version.
# Introduction to metabase-init
TODO: write [great documentation](http://jacobian.org/writing/what-to-write/)
(defproject metabase-init "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]]
:main ^:skip-aot metabase-init.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})
(ns metabase-init.core
(:gen-class))
(defn -main
"I don't do a whole lot ... yet."
[& args]
(println "Hello, World!"))
(ns metabase-init.core-test
(:require [clojure.test :refer :all]
[metabase-init.core :refer :all]))
(deftest a-test
(testing "FIXME, I fail."
(is (= 0 1))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment