This app will remind your drunken brain how much it owes.
You can even try it: https://beerbrain.tech/
After cloning the repository update submodules:
git submodule update --initThen make the copy of .env file:
cp example.env .envIt looks like:
# django
POSTGRES_HOST=postgres
POSTGRES_DB=beer_brain
POSTGRES_USER=beer_brain
POSTGRES_PASSWORD=!!!CHANGE_ME!!!
# vite
VITE_DJANGO_URL=http://0.0.0.0:8000/Then you can run it all:
docker compose up -d --build