Skip to content

Latest commit

 

History

History
197 lines (144 loc) · 12.3 KB

File metadata and controls

197 lines (144 loc) · 12.3 KB

Polis configuration

Currently all of the configurable values are handled by environment variables. These are listed in the env.example file, which you should copy to .env and modify as needed.


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 steps and options, you'll need to see the individual READMEs for more detailed descriptions of how to configure these components.

Environment variables and .env

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 UIDs 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 using git rev-parse HEAD (e.g. in Makefile) to tag docker container versions and other release assets. Can be left blank.
  • MATH_ENV Set to prod (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 of prod is recommended.)
  • MATH_LOG_LEVEL Used by the math service to determine how much logging to output. Reasonable values are debug, info, warn, and error. Defaults to warn.
  • 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 a test 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 are debug, info, warn, and error. Defaults to warn.

Database

  • READ_ONLY_DATABASE_URL (optional) Database replica for reads.

Required when using the docker postgres service (optional)

  • POSTGRES_DB database name (e.g. polis-dev)
  • POSTGRES_HOST database host (e.g. postgres:5432 if using docker compose, localhost:5432 if using local db)
  • POSTGRES_PASSWORD database password
  • POSTGRES_PORT typically 5432
  • POSTGRES_USER typically postgres. Any username will be used by the docker container to create a db user.

Required in all cases

  • DATABASE_URL should be the combination of above values, postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}/${POSTGRES_DB}
  • POSTGRES_DOCKER Set to false if using a postgres database outside of docker. Defaults to true. Read by Makefile.

DynamoDB

  • DYNAMODB_ENDPOINT (optional) DynamoDB endpoint. If not set, the default AWS SDK endpoint will be used.

Docker Concerns

  • TAG used by COMPOSE_PROJECT_NAME below. Defaults to dev.
  • 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. A PORT value is used as a fallback if API_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 as STATIC_FILES_PORT unless you are hosting client-admin separately from file-server. Useful in local development.
  • STATIC_FILES_PARTICIPATION_PORT same as STATIC_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 to true, if Comment Translation was enabled, to instruct the server upon the next initialization (reboot) to backfill detected language of stored comments. Default false.
  • CACHE_MATH_RESULTS Set this to true to instruct the API server to use LRU caching for results from the math service. Default is true if left blank.
  • DATABASE_SSL Set this to true for some production environments. Default is false.
  • DEV_MODE Set this to true in development and false otherwise. Used by API Server to make a variety of assumptions about HTTPS, logging, notifications, etc.
  • RUN_PERIODIC_EXPORT_TESTS Set this to true to run periodic export tests, sent to the ADMIN_EMAIL_DATA_EXPORT_TEST address.
  • SERVER_LOG_TO_FILE Set this to true to tell Winston.js to also write log files to server/logs/. Defaults to false. Note that if using docker compose, server/logs is mounted as a persistent volume.
  • SHOULD_USE_TRANSLATION_API Set this to true if using Google translation service. See Enabling Comment Translation below.
  • USE_NETWORK_HOST Set this to true if using server within an internal network (e.g. AWS) such that SSL is not required.

URL/Hostname Settings

  • API_DEV_HOSTNAME typically localhost unless you are running a development instance elsewhere.
  • API_PROD_HOSTNAME the hostname of your site (e.g. pol.is, or example.com). Should match DOMAIN_OVERRIDE. (In the future these two options may be combined into one.)
  • DOMAIN_OVERRIDE the hostname of your site. Should match API_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 match API_DEV_HOSTNAME in production, or API_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 is file-server, but could be an external hostname, such as a CDN or S3 bucket.

Authentication

  • AUTH_ISSUER The OIDC tenant domain URL for standard user authentication (e.g. https://your-tenant.auth0.com/).
  • AUTH_AUDIENCE The API identifier/audience for OIDC (e.g. users or https://your-api.com).
  • AUTH_CLIENT_ID The OIDC SPA client ID for your application.
  • JWKS_URI The JWKS URI for your OIDC tenant (e.g. https://your-tenant.auth0.com/.well-known/jwks.json).
  • POLIS_JWT_ISSUER The issuer for in-house JWTs (XID and anonymous participants). Defaults to https://pol.is/.
  • POLIS_JWT_AUDIENCE The audience for in-house JWTs. Defaults to participants.
  • JWT_PRIVATE_KEY_PATH Path to the RSA private key for signing in-house JWTs.
  • JWT_PUBLIC_KEY_PATH Path to the RSA public key for validating in-house JWTs.
  • JWT_PRIVATE_KEY Base64-encoded RSA private key (alternative to file path).
  • JWT_PUBLIC_KEY Base64-encoded RSA public key (alternative to file path).
  • OIDC_CACHE_KEY_PREFIX The prefix for the OIDC cache key. Defaults to @@auth0spajs@@.
  • OIDC_CACHE_KEY_ID_TOKEN_SUFFIX The suffix for the OIDC cache key. Defaults to @@user@@.

Third Party API Credentials

(All are optional, and omitting them will disable the related feature.)

  • AKISMET_ANTISPAM_API_KEY Comment spam detection and filtering.
  • 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 to GOOGLE_CREDENTIALS_BASE64 (See below).
  • MAILGUN_API_KEY, MAILGUN_DOMAIN If using Mailgun as an email transport.
  • AWS_REGION Used for some data import/export.
  • AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY Useful for AWS SDK operations.
  • ANTHROPIC_API_KEY For using Anthropic as a generative AI model.
  • GEMINI_API_KEY For using Gemini as a generative AI model.
  • OPENAI_API_KEY For using OpenAI as a generative AI model.

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.

Enabling Comment Translation

Note: This feature is optional.

We use Google to automatically translate submitted comments into the language of participants, as detected by the browser's language.

  1. Ensure the client-participation user interface is manually translated into participant language(s).

  2. Click Set up a project button within the Cloud Translation Quickstart Guide.

    • Follow the wizard and download the JSON private key, aka credentials file.
  3. Convert the file contents into a base64-encoded string. You can do this in many ways, including:

    • copying its contents into a client-side base64 encoder web app (inspect the simple JS code), or
    • using your workstation terminal: cat path/to/My-Project-abcdef0123456789.json | base64 (linux/mac)
  4. Set GOOGLE_CREDENTIALS_BASE64 in .env

  5. Set SHOULD_USE_TRANSLATION_API=true in .env

translate strings can be found in: client-participation/js/strings/en_us.js

Email Transports

We use AWS SES to send email.