python3 -m venv env
. env/bin/activate
pip install -r requirements.txtcp .env.example .env
vim .envAPI_URL – Outline api_url. Get this variable from Outline Manager app
AUTH_TOKEN – Auth token to protect private routes.
KEY_SALT – Optional value. Salt for creating outline key.
DB_URL – Database url like postgresql+asyncpg://
OUTLINE_USERS_GATEWAY – Outline users gateway url like ssconf://
Copy and set database_url
cp alembic.ini.example alembic.examplefastapi dev app.pyalembic revision --autogenerate -m "Some message"alembic upgrade head