From eb2683500afe5bc9fae0deb61cb55b61913aec4f Mon Sep 17 00:00:00 2001 From: Esteban Borai Date: Fri, 24 Nov 2023 23:00:05 -0300 Subject: [PATCH] fix: missing env vars --- .env.example | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index ed6abc7..c055c9c 100644 --- a/.env.example +++ b/.env.example @@ -5,11 +5,16 @@ # This is explicitly passed here for development purposes, it should match the # same as on `fixtures/synapse/homeserver.yaml` for CI. COMMUNE_REGISTRATION_SHARED_SECRET='m@;wYOUOh0f:CH5XA65sJB1^q01~DmIriOysRImot,OR_vzN&B' + +# Found in the Database after generating an admin user via `just gen_synapse_admin_user` +# in the `access_tokens` table. +COMMUNE_SYNAPSE_ADMIN_TOKEN='syt_YWRtaW4_PBgBsbKyGWAStLEglXZj_36o6mk' COMMUNE_SYNAPSE_HOST='http://0.0.0.0:8008' +# Found in the homeserver.yaml file +COMMUNE_SYNAPSE_SERVER_NAME='matrix.localhost' # Matrix Client MATRIX_HOST=http://localhost:8008 -MATRIX_ADMIN_TOKEN=secret # PostgreSQL POSTGRES_USER=synapse_user @@ -18,6 +23,9 @@ POSTGRES_DB=synapse # https://www.postgresql.org/docs/current/app-initdb.html POSTGRES_INITDB_ARGS='--no-locale --encoding=UTF8' +# Rust Logging +RUST_LOG=info + # Synapse SYNAPSE_SERVER_NAME=matrix.localhost SYNAPSE_REPORT_STATS=yes