![Dependency Status](https://camo.githubusercontent.com/d1022357913fb79185200caf98346cac90a93a43fcf73d5ac71e59b29f37d68e/687474703a2f2f696d672e736869656c64732e696f2f64617669642f746a776562622f68617368776172652d6170692e7376673f7374796c653d666c6174)
$ npm install hashpanel-api
$ docker run --restart=always --name hashpanel-redis -P -d sameersbn/redis:latest
$ docker run --restart=always --name hashpanel-postgres -P -e POSTGRES_PASSWORD=postgres -d postgres
$ psql -U postgres -h 0 -p 49154 -c "create user hashpanel with password 'hashpanel'"
$ psql -U postgres -h 0 -p 49154 -c "create database hashpanel"
$ psql -U postgres -h 0 -p 49154 -c "alter database hashpanel owner to hashpanel"
REDIS_URL=redis://:@localhost:49153
DATABASE_URL=postgres://postgres:postgres@localhost:49154/hashpanel