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

some reorg and updates to developer guide to flush it out more.

parent f322d6f9
No related branches found
No related tags found
No related merge requests found
> **This guide will teach you:**
> How to compile your own copy of Metabase
> How to set up a development environment
> How to run the Metabase Server
> How to contribute back to the Metabase project
> **This guide will teach you:**
> How to compile your own copy of Metabase
> How to set up a development environment
> How to run the Metabase Server
> How to contribute back to the Metabase project
[![Circle CI](https://circleci.com/gh/metabase/metabase-init.svg?style=svg&circle-token=3ccf0aa841028af027f2ac9e8df17ce603e90ef9)](https://circleci.com/gh/metabase/metabase-init)
## Install Prerequisites
# Install Prerequisites
These are the set of tools which are required in order to complete any build of the Metabase code. Follow the links to download and install them on your own before continuing.
1. Oracle JDK 8 (http://www.oracle.com/technetwork/java/javase/downloads/index.html)
2. Node.js for npm (http://nodejs.org/)
3. Leiningen (http://leiningen.org/)
## Installing dependencies
# Build Metabase
The entire Metabase application is compiled and assembled into a single .jar file which can run on any modern JVM. There is a script which will execute all steps in the process and output the final artifact for you.
./build-uberjar
After running the build script simply look in `target/uberjar` for the output .jar file and you are ready to go.
# Development Environment
If you plan to work on the Metabase code and make changes then you'll need to understand a few more things.
### Overview
The Metabase application has two basic compnents:
After you've installed the prerequisites and have a local copy of the repo
you'll need to install the following:
1. a backend written in Clojure which contains a REST API as well as all the relevant code for talking to databases and processing queries.
2. a frontend written as a Javascript single-page application which provides the web UI.
Both components are built and assembled together into a single jar file which runs the entire application.
### 3rd party dependencies
Metabase depends on lots of other 3rd party libraries to run, so as you are developing you'll need to keep those up to date. These don't run automatically during development, so kick them off manually when needed.
```sh
# install clojure dependencies
# clojure dependencies
$ lein deps
# install frontend dependencies from npm
# javascript dependencies
$ npm install
```
## Frontend overview
To start working, you'll need to build the frontend JS and CSS
### Development server (quick start)
Run your backend development server with
lein ring server
Start the frontend build process with
npm run build-hot
This will get you a full development server running on port :3000 by default.
We use these technologies for our FE build process to allow us to use modules, es6 syntax,
and css variables.
## Frontend development
We use these technologies for our FE build process to allow us to use modules, es6 syntax, and css variables.
- webpack
- babel
- cssnext
## NPM scripts & frontend build process
Frontend tasks are managed by NPM. All available tasks can be found in package.json under "scripts".
Frontend tasks are managed by `npm`. All available tasks can be found in `package.json` under *scripts*.
To build the frontend client without watching for changes, you can use:
......@@ -55,59 +86,55 @@ $ npm run build-hot
Note that at this time if you change CSS variables, those changes will only be picked up when a build is restarted.
## Usage
Then run the HTTP server with
lein ring server
There is also an option to reload changes on save without hot reloading if you prefer that.
```sh
$ npm run build-watch
```
## Clojure Unit Tests / Linting
#### Unit Tests / Linting
Check that the project can compile successfully with
Run unit tests with
./build-uberjar
npm run test # Karma
npm run test-e2e # Protractor
Run the linters with
lein eastwood # Clojure linters
lein bikeshed --max-line-length 240
npm run lint
Run unit tests with
lein test
## Backend development
Leiningen and your REPL are the main development tools for the backend. There are some directions below on how to setup your REPL for easier development.
By default, the tests only run against the `generic-sql` dataset (an H2 test database).
You can run specify which datasets/drivers to run tests against with the env var `MB_TEST_DATASETS`:
And of course your Jetty development server is available via
MB_TEST_DATASETS=generic-sql,mongo lein test
lein ring server
At the time of this writing, the valid datasets are `generic-sql` and `mongo`.
## Documentation
#### Unit Tests / Linting
#### Instant Cheatsheet
Run unit tests with
Start up an instant cheatsheet for the project + dependencies by running
lein test
lein instant-cheatsheet
or a specific test with
#### Marginalia
lein test metabase.api.session-test
Available at http://metabase.github.io/metabase-init/.
By default, the tests only run against the `h2` dataset (built-in test database). You can specify which datasets/drivers to run tests against with the env var `MB_TEST_DATASETS`:
You can generate and view documentation with
MB_TEST_DATASETS=h2,postgres,mysql,mongo lein test
lein marg
open ./docs/uberdoc.html
At the time of this writing, the valid datasets are `h2`, `postgres`, `mysql`, and `mongo`.
You can update the GitHub pages documentation using
Run the linters with
make dox
lein eastwood # Clojure linters
lein bikeshed --max-line-length 240
You should be on the `master` branch without any uncommited local changes before doing so. Also, make sure you've fetched the branch `gh-pages` and can push it back to `origin`.
## Bootstrapping (for Development)
#### Bootstrapping (for REPL)
To quickly get your dev environment set up, use the `bootstrap` function to create a new User and Organization.
Open a REPL in Emacs or with `lein repl` and enter the following:
......@@ -121,7 +148,7 @@ Open a REPL in Emacs or with `lein repl` and enter the following:
You'll be walked through the steps to get started.
## API Client (for Development)
#### API Client (for REPL)
You can make API calls from the REPL using `metabase.http-client`:
......@@ -162,6 +189,33 @@ Once's this repo is made public, this Clojars badge will work and show the statu
[![Dependencies Status](http://jarkeeper.com/metabase/metabase-init/status.png)](http://jarkeeper.com/metabase/metabase-init)
## 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
lein marg
open ./docs/uberdoc.html
You can update the GitHub pages documentation using
make dox
You should be on the `master` branch without any uncommited local changes before doing so. Also, make sure you've fetched the branch `gh-pages` and can push it back to `origin`.
# Contributing
In general, we like to have an open issue for every pull request as a place to discuss the nature of any bug or proposed improvement. Each pull request should address a single issue, and contain both the fix as well as a description of how the pull request and tests that validate that the PR fixes the issue in question.
......
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