Skip to content
Snippets Groups Projects
Commit 8a7ea7cf authored by Cam Saül's avatar Cam Saül
Browse files

Update README.md

parent e989fd79
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,14 @@ Run unit tests with
## Documentation
#### Instant Cheatsheet
Start up an instant cheatsheet for the project + dependencies by running
lein instant-cheatsheet
#### Marginalia
Available at http://metabase.github.io/metabase-init/.
You can generate and view documentation with
......@@ -63,10 +71,23 @@ To quickly get your dev environment set up, use the `bootstrap` function to crea
Open a REPL in Emacs or with `lein repl` and enter the following:
(use 'metabase.bootstrap)
(bootstrap)
(bootstrap)
You'll be walked through the steps to get started.
## API Client (for Development)
You can make API calls from the REPL using `metabase.http-client`:
(use 'metabase.http-client)
(defn cl [& args]
(-> (apply client {:email "crowberto@metabase.com", :password "blackjet"} args)
clojure.pprint/pprint))
(cl :get "user/current")
;; -> {:email "crowbetro@metabase.com",
;; :first_name "Crowbero",
;; :last_login #inst "2015-03-13T22:55:05.390000000-00:00",
;; ...}
## Checking for Out-of-Date Dependencies
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment