-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
13 lines (13 loc) · 1.17 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
HOSTS="http://localhost,http://127.0.0.1,http://docker-container-name,http://news.yourwebsite.com,https://news.yourwebsite.com" # list of hosts via which NewsPlatform will be available
CUSTOM_PLATFORM_NAME="Personal News Platform"
SIDEBAR_TITLE="Latest News"
TIME_ZONE="Europe/London" # time zone of server location
ALLOWED_LANGUAGES="en,de" # list of allowed content languages - asterix * is all languages allowed
FULL_TEXT_URL="http://fivefilters:80/full-text-rss/" # url to fivefilters.org/full-text-rss running instance for full-text artciles
FEED_CREATOR_URL="http://fivefilters:80/feed-creator/" # url to fivefilters.org/feed-creator/ running instance for rss feed creation from website
DEBUG=false # if run in debug or production mode - currently only debug works
OPENAI_API_KEY="<OPENAI_API_KEY>" # OpenAI API-Key for AI artcile bullet point summary
POSTGRESQL_HOST="news-platform-postgres" # Optional if using PostgreSQL Database: hostname/URL
POSTGRESQL_DB="postgres" # Optional if using PostgreSQL Database: db name
POSTGRESQL_USER="postgres" # Optional if using PostgreSQL Database: user name
POSTGRESQL_PASSWORD="postgres" # Optional if using PostgreSQL Database: user password