added example configuration

This commit is contained in:
Hillebrand van de Groep 2016-10-08 18:08:59 +02:00
parent 3b1c26cb7d
commit 0fd1d45e9b
2 changed files with 35 additions and 0 deletions

15
asconfig.yaml.example Normal file
View File

@ -0,0 +1,15 @@
url: "http://localhost:5000"
as_token: "AS_TOKEN_HERE"
hs_token: "HS_TOKEN_HERE"
id: "telematrix"
sender_localpart: telegram
namespaces:
users:
- exclusive: true
regex: '@telegram_.*'
rooms: []
aliases:
- exclusive: false
regex: '#telegram_.*'

20
config.json.example Normal file
View File

@ -0,0 +1,20 @@
{
"tokens": {
"hs": "HS_KEY",
"as": "AS_KEY",
"telegram": "TELEGRAM_BOT_API_KEY",
"google": "GOOGLE_API_KEY"
},
"hosts": {
"internal": "http://127.0.0.1:PORT/",
"external": "https://DOMAIN.TLD/"
},
"chats": {
"-TELEGRAM_ID": "!INTERNAL_ID:DOMAIN.TLD"
},
"user_id_format": "@telegram_{}:DOMAIN.TLD"
}