Getting started

Everything you need to know to get started and host aha-secret locally


Install docker and docker-compose first. Next download the docker-compose file:

$ wget https://raw.githubusercontent.com/aha-oida/aha-secret/main/docker-compose.yml

Create the file .env with the following content:

RACK_ENV=production
URL=http://localhost
MEMCACHE=memcached:11211

Now startup aha-secret using docker-compose:

$ docker compose up -d

You can finally access aha-secret locally with the url: http://localhost:9292.

This installation is just for demo. For production deployment it is highly recommended to use encryption and a reverse proxy.