docs: fix secret key generation syntax in README quickstart

Agent-Logs-Url: https://github.com/christianlouis/InboxConverge/sessions/917d1096-2c18-4324-96db-036f51d98bc3

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-29 00:56:37 +00:00
parent 06efeed7be
commit 9c12555a81
+3 -3
View File
@@ -59,9 +59,9 @@ POP3_ACCOUNT_1_PASSWORD=your-pop3-password
SMTP_USER=you@gmail.com
SMTP_PASSWORD=xxxx-xxxx-xxxx-xxxx
# Required internal secrets (generate once, keep private)
SECRET_KEY=<python -c 'import secrets; print(secrets.token_urlsafe(32))'>
ENCRYPTION_KEY=<python -c 'import secrets; print(secrets.token_urlsafe(32))'>
# Required internal secrets — run each command below and paste the output
SECRET_KEY= # python -c 'import secrets; print(secrets.token_urlsafe(32))'
ENCRYPTION_KEY= # python -c 'import secrets; print(secrets.token_urlsafe(32))'
DATABASE_URL=postgresql+asyncpg://user:password@localhost:5432/inboxconverge
```