hashware-api
v0.1.38
Published
Backend REST API for hashpanel.io
Downloads
185
Maintainers
Readme
hashware-api
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