23 lines
512 B
Text
23 lines
512 B
Text
###############################################
|
|
# Settings
|
|
###############################################
|
|
|
|
# Fill in the data and rename to .env
|
|
|
|
# Redis
|
|
REDIS_HOST = 'localhost'
|
|
REDIS_PORT = 6379
|
|
REDIS_DB = 0 # For this option the redis user need the permission SELECT
|
|
REDIS_USERNAME = 'mastodon'
|
|
REDIS_PASSWORD = '<PASSWORD>'
|
|
|
|
# Mastodon
|
|
MASTODON_TOKEN = '<TOKEN>'
|
|
MASTODON_URL = 'https://<DOMAIN>/api/v1/statuses'
|
|
|
|
# NodeBB
|
|
URL = 'https://linux-nerds.org/topic'
|
|
ALLOWED_USER = 1
|
|
DISALLOWED_CATEGORIES = 13
|
|
|
|
|