Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/damingerdai/health-master

health master
https://github.com/damingerdai/health-master

Last synced: 19 days ago
JSON representation

health master

Awesome Lists containing this project

README

        

# Health Master

health master

## Setup

```bash
docker volume create daming-health-master-volume
docker volume create daming-health-master-redis-volume
docker volume create daming-health-master-kuma-volume
docker network create daming-health-master-network

docker-compose pull
```

### Postgresql

create a user, like `dbuser`

```

CREATE USER dbuser WITH PASSWORD '';
```

create a database, like `exampledb`

```
CREATE DATABASE exampledb OWNER dbuser;
```

add permission to the database with the user:

```
GRANT ALL PRIVILEGES ON DATABASE exampledb TO dbuser.
```

## Install githook

```
chmod ug+x .go-husky/*
sh install_githooks.sh
chmod ug+x .git/hooks/*
```