Configuration
WARNING: this page is just for advanced configuration options. You normally do not need to change defauts values
PolisOrbis application follows the twelve-factor app methodology storing config in the environment.
Overview
First things first, it helps to understand a bit how the system is set up.
Component Name | Tech | Description |
---|---|---|
server | Node.js | The main server. Handles client web requests (page loads, vote activity, etc.) |
math | Clojure/JVM | The math engine. |
client-participation | Javascript | The client code for end-users. |
client-admin | Javascript | The client code for administrators. |
client-report | Node.js | The code for detailed analytics reports. |
While this document will try to outline some of the more important configuration options, you’ll need to see the individual READMEs for more detailed descriptions of how to configure these components.
Environment variables
Quickstart
In development, the default values of example.env should work as-is.
cp example.env .env
By default, docker compose
will look for and use an .env
file if one exists. However, any value present in your
environment or passed in on the command line will overwrite those in the file. Thus you should be able to set your
configuration values in whatever way suits your given scenario. (A plain text .env
file is not always appropriate in
production deployments.)
If you are running these applications without Docker, just make sure that any environment variables you need are set in the environment where the application is running.
If you are doing development on a url other than localhost
or localhost:5000
, you need to update the
API_DEV_HOSTNAME
value to your development hostname:port, e.g. myhost:8000
or api.testserver.net
.
DEV_MODE
should be true
.
If you are deploying to a custom domain (not pol.is
) then you need to update both the API_PROD_HOSTNAME
and
DOMAIN_OVERRIDE
values to your custom hostname (omitting http(s)://
protocol).
DEV_MODE
should be false
.
General Settings
ADMIN_UIDS
an array of user UUIDs for site admins. These users will have moderator capabilities on all conversations hosted on the site.EMAIL_TRANSPORT_TYPES
comma-separated list of email services to use (see Email Transports below)GIT_HASH
Set programmatically usinggit rev-parse HEAD
(e.g. inMakefile
) to tag docker container versions and other release assets. Can be left blank.MATH_ENV
Set toprod
(default),preprod
,dev
or arbitrary feature flag. In cases where a single database is used for multiple environments, this value is used by the API service to request the correct data. (Using a single DB for multiple environments in this fashion is no longer recommended, and so the default value ofprod
is recommended.)SERVER_ENV_FILE
The name of an environment file to be passed into the API Server container by docker compose. Defaults to.env
if left blank. Used especially for building atest
version of the project for end-to-end testing.SERVER_LOG_LEVEL
Used by Winston.js in the API server to determine how much logging to output. Reasonable values aredebug
,info
, anderror
. Defaults toinfo
.
Database
READ_ONLY_DATABASE_URL
(optional) Database replica for reads.POSTGRES_DB
database name (e.g.PolisOrbis-dev
)POSTGRES_HOST
database host (e.g.postgres:5432
if using docker compose,localhost:5432
if using local db)POSTGRES_PASSWORD
database passwordPOSTGRES_PORT
typically 5432POSTGRES_USER
typicallypostgres
. Any username will be used by the docker container to create a db user.DATABASE_URL
should be the combination of above values,postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}/${POSTGRES_DB}
Docker Concerns
TAG
used byCOMPOSE_PROJECT_NAME
below. Defaults todev
.COMPOSE_PROJECT_NAME
Used by docker compose to label containers and volumes. Useful in development if you are (re)-building and deleting groups of docker assets.
Ports
API_SERVER_PORT
typically 5000. Used internally within a docker network and/or behind a proxy. APORT
value is used as a fallback ifAPI_SERVER_PORT
is not set (for Heroku compatibility).HTTP_PORT
typically 80. Port exposed by Nginx reverse proxy.HTTPS_PORT
typically 443. Port exposed by Nginx reverse proxy.STATIC_FILES_PORT
typically 8080. Used internally within a docker network and/or behind a proxy.STATIC_FILES_ADMIN_PORT
same asSTATIC_FILES_PORT
unless you are hosting client-admin separately from file-server. Useful in local development.STATIC_FILES_PARTICIPATION_PORT
same asSTATIC_FILES_PORT
unless you are hosting client-participation separately from file-server. Useful in local development.
Email Addresses
ADMIN_EMAIL_DATA_EXPORT
email address from which data export emails are sent.ADMIN_EMAIL_DATA_EXPORT_TEST
email address to receive periodic export test results, if configured below.ADMIN_EMAIL_EMAIL_TEST
email address to receive backup email system test.ADMIN_EMAILS
array of email addresses to receive team notifications.POLIS_FROM_ADDRESS
email address from which other emails are sent.
Boolean Flags
(All can be left blank, or false
)
BACKFILL_COMMENT_LANG_DETECTION
Set totrue
, if Comment Translation was enabled, to instruct the server upon the next initialization (reboot) to backfill detected language of stored comments. Defaultfalse
.CACHE_MATH_RESULTS
Set this totrue
to instruct the API server to use LRU caching for results from the math service. Default istrue
if left blank.DEV_MODE
Set this totrue
in development andfalse
otherwise. Used by API Server to make a variety of assumptions about HTTPS, logging, notifications, etc.RUN_PERIODIC_EXPORT_TESTS
Set this totrue
to run periodic export tests, sent to theADMIN_EMAIL_DATA_EXPORT_TEST
address.SERVER_LOG_TO_FILE
Set this totrue
to tell Winston.js to also write log files to server/logs/. Defaults tofalse
. Note that if using docker compose, server/logs is mounted as a persistent volume.SHOULD_USE_TRANSLATION_API
Set this totrue
if using Google translation service. See Enabling Comment Translation below.
URL/Hostname Settings
API_DEV_HOSTNAME
typicallylocalhost
unless you are running a development instance elsewhere.API_PROD_HOSTNAME
the hostname of your site (e.g.pol.is
, orexample.com
). Should matchDOMAIN_OVERRIDE
. (In the future these two options may be combined into one.)DOMAIN_OVERRIDE
the hostname of your site. Should matchAPI_PROD_HOSTNAME
.DOMAIN_WHITELIST_ITEM_01
-08
up to 8 possible additional whitelisted domains for client applications to make API requests from. Typical setups that use the same URL for the API service as for the public-facing web sites do not need to configure these.EMBED_SERVICE_HOSTNAME
should matchAPI_DEV_HOSTNAME
in production, orAPI_DEV_HOSTNAME
in development. Embedded conversations make API requests to this host.SERVICE_URL
used by client-report to make API calls. Only necessary if client-report is hosted separately from the API service. Can be left blank.STATIC_FILES_HOST
Used by the API service to fetch static assets (the compiled client applications) from a static file server. Within the docker compose setup this isfile-server
, but could be an external hostname, such as a CDN or S3 bucket.
Third Party API Credentials
(All are optional, and omitting them will disable the related feature.)
AWS_REGION
Used for S3 data import/export.AWS_ACCESS_KEY_ID
,AWS_SECRET_ACCESS_KEY
If using Amazon SES as an email transport.MAILGUN_API_KEY
,MAILGUN_DOMAIN
If using Mailgun as an email transport.
User interface
PolisOrbis supports a configurable UI in order to be deployed by a specific service provider. These variables affects the UI:
P_LOGO_ICO_URL
: [URL] defaults to docs/polisorbis-logo-square.pngP_LOGO_URL
: [URL] defaults to docs/polisorbis-logo.pngP_TITLE
: [URL] (defaults to “PolisOrbis”P_CLAIM
: [URL] (defaults to “Input Crowd, Output Meaning”P_DESCRIPTION
:[String] defaults to “PolisOrbis is a real-time system for gathering, analyzing and understanding what large groups of people think in their own words, enabled by advanced statistics and machine learning”sign_in
P_DOC_URL
: [String] defaults to “Read more about [PolisOrbis](https://doc.polisorbis.copernicani.it]”P_REPO_URL
:[String] defaults to “Explore the code and join the developer community on GitLab”P_TOS_URL
: [HTML] defaults to “Term of services”P_PRIVACY_POLICY_URL
: [HTML] defaults to “Privacy policy”
Deprecated
ENCRYPTION_PASSWORD_00001
(deprecated) a password used to encrypt and decrypt participants’ IP addresses. Can be left blank.WEBSERVER_PASS
(deprecated) basic auth setting for certain requests sent between math and api services.WEBSERVER_USERNAME
(deprecated) basic auth setting for certain requests sent between math and api services.FB_APP_ID
Must register with Facebook to get an ID to enable Facebook App connectivity.AKISMET_ANTISPAM_API_KEY
Comment spam detection and filtering.ENABLE_TWITTER_WIDGETS
set totrue
to enable twitter widgets on the client-admin authentication pages.GA_TRACKING_ID
For using Google Analytics on client pages.GOOGLE_CREDENTIALS_BASE64
Required if using Google Translate API. (See below).GOOGLE_CREDS_STRINGIFIED
Alternative toGOOGLE_CREDENTIALS_BASE64
(See below).MAXMIND_LICENSEKEY
,MAXMIND_USERID
If using IP Geolocation service Maxmind.TWITTER_CONSUMER_KEY
,TWITTER_CONSUMER_SECRET
For Twitter integration.
Email Transports
We use Nodemailer to send email. Nodemailer uses various built-in and packaged email transports to send email via SMTP or API, either directly or via third-party platforms.
Each transport needs a bit of hardcoded scaffold configuration to make it work, which we welcome via code contribution. But after this, others can easily use the same email transport by setting some configuration values via environment variable or otherwise.
We use EMAIL_TRANSPORT_TYPES
to set email transports and their fallback
order. Each transport has a keyword (e.g., maildev
). You may set one or more
transports, separated by commas. If you set more than one, then each transport
will “fallback” to the next on failure.
For example, if you set aws-ses,mailgun
, then we’ll try to send via
aws-ses
, but on failure, we’ll try to send via mailgun
. If Mailgun fails,
the email will not be sent.
Configuring transport: maildev
Note: The MailDev email transport is for development purposes only. Ensure it’s disabled in production!
- Add
maildev
into theEMAIL_TRANSPORT_TYPES
configuration.
This transport will work automatically when running via Docker Compose with the development overlay, accessible on port 1080.
Configuring transport: aws-ses
- Add
aws-ses
into theEMAIL_TRANSPORT_TYPES
configuration. - Set the
AWS_ACCESS_KEY_ID
andAWS_SECRET_ACCESS_KEY
configuration.
Configuring transport: mailgun
- Add
mailgun
into theEMAIL_TRANSPORT_TYPES
configuration. - Set the
MAILGUN_API_KEY
andMAILGUN_DOMAIN
configuration.
Adding a new transport
Find a transport for the service you require (or write your own!)
Add any new transport configuration to
getMailOptions(...)
inserver/email/senders.js
.Submit a pull request.