0.1.38 • Published 9 years ago

hashware-api v0.1.38

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

hashware-api

NPM version Build status Dependency Status

Install Hashpanel

$ npm install hashpanel-api

Install Docker Services

1. Redis

$ docker run --restart=always --name hashpanel-redis -P -d sameersbn/redis:latest

2. Postgres

$ 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"

Set Environment

.env

REDIS_URL=redis://:@localhost:49153
DATABASE_URL=postgres://postgres:postgres@localhost:49154/hashpanel