Skip to content

Commit

Permalink
fix: missing env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
EstebanBorai committed Nov 25, 2023
1 parent 5a7af1b commit eb26835
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit eb26835

Please sign in to comment.