myjourney
├── .github
│   ├── workflows
│   │   ├── cd.yml
│   │   └── ci.yml
│   └── dependabot.yml
├── deploy
│   ├── etc
│   │   └── s6-overlay
│   ├── Dockerfile
│   └── Dockerfile.binary
├── docs
│   ├── applications
│   │   ├── users
│   │   └── index.rst
│   ├── changelog.rst
│   ├── conf.py
│   └── index.rst
├── myjourney
│   ├── core
│   │   ├── __init__.py
│   │   └── apps.py
│   ├── static
│   │   └── vendors
│   ├── templates
│   │   ├── .well-known
│   │   ├── pages
│   │   ├── 403.html
│   │   ├── 403_csrf.html
│   │   ├── 404.html
│   │   ├── 500.html
│   │   ├── base.html
│   │   ├── base_email.html
│   │   └── robots.txt
│   ├── __init__.py
│   ├── __main__.py
│   ├── asgi.py
│   ├── settings.py
│   ├── urls.py
│   └── wsgi.py
├── tests
│   ├── __init__.py
│   ├── conftest.py
│   └── test_assert_true.py
├── .dockerignore
├── .editorconfig
├── .env.template
├── .gitignore
├── .pre-commit-config.yaml
├── CHANGELOG.md
├── README.md
├── db.sqlite3
├── justfile
├── manage.py
├── playground.ipynb
└── pyproject.toml
