2024-09-25 10:56:47 +00:00
|
|
|
# HOST_ADDRESS: Address of the current Freedium instance
|
2024-01-31 00:48:20 +00:00
|
|
|
HOST_ADDRESS = "http://localhost:6752"
|
2024-03-27 16:49:52 +00:00
|
|
|
|
2024-09-25 10:56:47 +00:00
|
|
|
# TIMEOUT: Timeout in seconds for the requests
|
2025-04-24 03:34:40 +00:00
|
|
|
TIMEOUT=15
|
2024-03-27 16:49:52 +00:00
|
|
|
|
2024-09-25 10:56:47 +00:00
|
|
|
# ADMIN_SECRET_KEY: Secret key that will be used to get access for some internal admin API endpoints
|
2024-01-31 00:48:20 +00:00
|
|
|
ADMIN_SECRET_KEY="test"
|
2024-03-27 16:49:52 +00:00
|
|
|
|
|
|
|
|
# MEDIUM_AUTH_COOKIES="Get your Medium subscription account coockies here ONLY IF YOU HAVE A PAID SUBSCRIPTION, uid and sid properties is required"
|
2024-09-25 10:56:47 +00:00
|
|
|
|
|
|
|
|
# PROXY_LIST: List of proxies to use for the requests. If not set, the requests will be sent without a proxy
|
|
|
|
|
# PROXY_LIST=socks5://haproxy-pb:1080
|
|
|
|
|
|
2024-10-10 07:04:18 +00:00
|
|
|
# PGADMIN credentials
|
|
|
|
|
PGADMIN_DEFAULT_EMAIL=root@root.com
|
|
|
|
|
PGADMIN_DEFAULT_PASSWORD=root
|
|
|
|
|
|
2025-04-24 03:34:40 +00:00
|
|
|
# .... and more values to change you can find in ./web/server/config.py and docker-compose rules folder
|