HUMAN App

Running services

To run HUMAN App server:

docker compose -f docker-compose.local.yml \
    --env-file .env.compose.local \
    up human-app-server -d

To run HUMAN App frontend:

docker compose -f docker-compose.local.yml \
    --env-file .env.compose.local \
    up human-app-client -d

First time setup

At the moment HUMAN App server uses same auth mechanism as regular users in order to communicated with Reputation Oracle (will be changed in the future). It means that when you setup it for the first time - you need to create a user for it. Steps are as follows:

  • run HUMAN App server & frontend

  • open HUMAN App frontend and start new user sign up

  • use email from HUMAN_APP_EMAIL env variable you specified and password from HUMAN_APP_PASSWORD

  • click "Sign Up"

  • then connect to Reputation Oracle database, open users table, and edit the user with HUMAN_APP_EMAIL to have:

    • role: human_app

    • status: active

After that HUMAN App server is fully set up.

Last updated

Was this helpful?