Federalist is updated regularly. Join our public chat room to talk to us and stay informed. You can also check out our documentation to learn more.
Federalist helps federal government entities publish compliant static websites quickly and seamlessly. Federalist integrates with GitHub and is built on top of cloud.gov, which uses Amazon Web Services.
This repository is home to "federalist-core" - a Node.js app that allows government users to create and configure Federalist sites.
Partner agencies across the federal government use Federalist to host websites. A few examples include:
More examples can be found at https://federalist.18f.gov/content/examples.
Before you start, ensure you have the following installed:
In order to provide a simple development user experience, Federalist has some complexity on the backend. So as part of your local setup, you will need to emulate some of that complexity through the creation steps below. This shouldn't take longer than 15 minutes.
Note: some terminal commands may take a while to process, without offering feedback to you. Your patience will be rewarded!
- Clone the
18F/federalist
repository from Github andcd
to that directory.
-
Make a copy of
config/local.sample.js
and name itlocal.js
and place it in theconfig
folder. You can do this by runningcp config/local{.sample,}.js
This will be the file that holds your S3 and SQS configurations. -
Register a new OAuth application on GitHub. Give your app a name and "Homepage URL" (
http://localhost:1337
), and usehttp://localhost:1337/auth/github/callback
as the "Authorization callback url". -
Once you have created the application, you'll see a
Client ID
andClient Secret
. Open theconfig/local.js
file in your text or code editor and update it with these values:passport: { github: { options: { clientID: 'VALUE FROM GITHUB', clientSecret: 'VALUE FROM GITHUB', callbackURL: 'http://localhost:1337/auth/github/callback' } } }
-
Register or create a new GitHub organization with a name of your choosing. Then find your organization's ID by visiting
https://api.github.com/orgs/<your-org-name>
and copying theid
into the whitelist oforganizations
inconfig/local.js
.organizations: [ 99999999 // your org added here ]
The organization will need to grant access to Federalist, which can be done:
- during a first-time login with your GitHub credentials, or
- in the Authorized OAuth Apps tab in your GitHub Account settings
For 18F/TTS developers: This section is primarily for 18F/TTS developers working on the Federalist project. Before you get started, make sure you have been fully on-boarded, including getting access to the Federalist cloud.gov staging
space.
- Paste
cf login --sso -a https://api.fr.cloud.gov -o gsa-18f-federalist -s staging
into your terminal window. - Visit https://login.fr.cloud.gov/passcode to get a Temporary Authentication Code.
- Paste this code into the terminal, and hit the return key. (For security purposes, the code won't be rendered in the terminal.)
- Type
npm run update-local-config
to read necessary service keys from the staging environment and load them into a local file calledconfig/local-from-staging.js
.
Note that npm run update-local-config
will need to be re-run with some frequency, as service keys are changed every time Federalist's staging instance is deployed.
- Run
docker-compose build
. - Run
docker-compose run app yarn && docker-compose run app yarn build
to install dependencies and build the app initially. - Run
docker-compose run app yarn create-dev-data
and answer its prompts to create some fake development data for your local database. - Run
docker-compose up
to start the development environment.
Any time the node dependencies are changed (like from a recently completed new feature), docker-compose run app yarn
will need to be re-run to install updated dependencies after pulling the new code from GitHub.
- If you've successfully completed all of the steps the Federalist app is now ready to run locally! 🎉
- You should now be able to see Federalist running at http://localhost:1337. Local file changes will cause the server to restart and/or the front end bundles to be rebuilt.
Pro tips:
In our Docker Compose environment, app
is the name of the container where the Federalist web application runs. You can run any command in the context of the web application by running docker-compose run app <THE COMMAND>
.
For example:
- Use
docker-compose run app yarn test
to run local testing on the app. - Use
docker-compose run app yarn lint:diff
to check that your local changes meet our linting standards.
Similarly you can run any command in the context of the database container db
by running docker-compose run db <THE COMMAND>
.
Note that when using docker-compose run
, the docker network will not be exposed to your local machine. If you do need the network available, run docker-compose run --service-ports app <THE COMMAND>
.
The db
container is exposed on port 5433
of your host computer to make it easier to run commands on. For instance, you can open a psql
session to it by running psql -h localhost -p 5433 -d federalist -U postgres
.
If you are working on the front end of the application, the things you need to know are:
- It is a React and Redux application
- It is built with
webpack
- It lives in
/frontend
To analyze the contents of the front end JavaScript bundle, use docker-compose run --service-ports app yarn analyze-webpack
after a build. Then visit http://127.0.0.1:8888 to see a visualization of the the bundle contents.
We have a few environment variables that the application uses. In production, those variables are provided to the application either through the Cloud Foundry environment or through Cloud Foundry services.
To inspect the way the environment is provided to the application in production and staging, look at manifest.yml
and staging_manifest.yml
respectively.
To see how the application receives those configurations, looks at config/env/production.js
.
The following environment variables are set on the Cloud Foundry environment in the application manifest:
NODE_ENV
: The node environment where the app should run. When running in Cloud Foundry this should always be set to production, even for the staging environmentAPP_ENV
: The application environment in which the app should run. Valid values areproduction
andstaging
.LOG_LEVEL
: Sets the log level for the app.NPM_CONFIG_PRODUCTION
: This should be set to true in Cloud Foundry to prevent Yarn/NPM from installing dev dependenciesNODE_MODULES_CACHE
: This should be set to true in Cloud Foundry to prevent caching node modules since those are vendored by FederalistAPP_NAME
: The name of the Cloud Foundry applicationAPP_DOMAIN
: The hostname where the application runs in Cloud Foundry
Secrets cannot be kept in the application manifest so they are provided by Cloud Foundry services. The app expects the following user provided services to be provided:
federalist-<environment>-rds
: A cloud.gov brokered service that allows the application to use RDS Postgres for its databasefederalist-<environment>-s3
: A cloud.gov brokered service that allows the application to work with the S3 bucket where Federalist's sites livefederalist-<environment>-env
: A user-provided service that provides the application with secrets that cannot be added tomanifest.yml
b/c that file is under version control; this service provides the following:FEDERALIST_SESSION_SECRET
: The session secret used to sign entries in Federalist's session storeGITHUB_CLIENT_CALLBACK_URL
: The callback URL used for GitHub authenticationGITHUB_CLIENT_ID
: The client ID used for GitHub authenticationGITHUB_CLIENT_SECRET
: The client secret used for GitHub authenticationGITHUB_WEBHOOK_SECRET
: The secret used to sign and verify webhook requests from GitHubGITHUB_WEBHOOK_URL
: The url where GitHub webhook requests should be sentNEW_RELIC_APP_NAME
: The app name to report to New RelicNEW_RELIC_LICENSE_KEY
: The license key to use with New Relic
federalist-<environment>-sqs-creds
: A user-provided service that provides the application with SQS credentials that cannot be added tomanifest.yml
b/c that file is under version control; this service provides the following:access_key
: The AWS access key for SQS queuesecret_key
: The AWS secret key for SQS queueregion
: The AWS regionsqs_url
: The AWS SQS queue URL
Here <environment>
refers the value set for the APP_ENV
environment variable.
When making code changes, be sure to write new or modify existing tests to cover your changes.
The full test suite of both front and back end tests can be run via:
docker-compose run app yarn test
You can also just run back or front end tests via:
docker-compose run app yarn test:server # for all back end tests
docker-compose run app yarn test:server:file ./test/api/<path/to/test.js> # to run a single back end test file
docker-compose run app yarn test:client # for all front end tests
docker-compose run app yarn test:client:watch # to watch and re-run front end tests
docker-compose run app yarn test:client:file ./test/frontend/<path/to/test.js> # to run a single front end test file
To view coverage reports as HTML after running the full test suite:
docker-compose run --service-ports app yarn serve-coverage
and then visit http://localhost:8080.
For the full list of available commands that you can run with yarn
or npm
, see the "scripts"
section of package.json
.
We use eslint
and adhere to Airbnb's eslint config (with some minor exceptions) as recommended by the 18F Front End Guild.
Because this project was not initially written in a way that complies with our current linting standard, we are taking the strategy of bringing existing files into compliance as they are touched during normal feature development or bug fixing.
To lint the files you have created or changed in a branch, run:
docker-compose run app yarn lint:diff
eslint
also has a helpful auto-fix command that can be run by:
docker-compose run app node_modules/.bin/eslint --fix path/to/file.js
Federalist is new open source publishing system based on proven open source components and techniques. Once the text has been written, images uploaded, and a page is published, the outward-facing site will act like a simple web site -- fast, reliable, and easily scalable. Administrative tools, which require authentication and additional interactive components, can be responsive with far fewer users.
Regardless of the system generating the content, all websites benefit from the shared editor and static hosting, which alleviates the most expensive requirements of traditional CMS-based websites and enables shared hosting for modern web applications.
From a technical perspective, a modern web publishing platform should follow the “small pieces loosely joined” API-driven approach. Three distinct functions operate together under a unified user interface:
-
Look & feel of the website Templates for common use-cases like a departmental website, a single page report site, API / developer documentation, project dashboard, and internal collaboration hub can be developed and shared as open source repositories on GitHub. Agencies wishing to use a template simply create a cloned copy of the template, add their own content, and modify it to suit their needs. Social, analytics, and accessibility components will all be baked in, so all templates are in compliance with the guidelines put forth by SocialGov and Section 508.
-
Content editing Content editing should be a separate application rather than built into the web server. This allows the same editing interface to be used across projects. The editing interface only needs to scale to match the load from editors, not visitors.
-
Publishing infrastructure Our solution is to provide scalable, fast, and affordable static hosting for all websites. Using a website generator like Jekyll allows for these sites to be built dynamically and served statically.
- 18F Blog Post on Federalist's platform launch
- Building CMS-Free Websites
- Background on relaunch of Healthcare.gov’s front-end
- HealthCare.gov uses lightweight open source tools
- A Few Notes on NotAlone.gov
This project is in the worldwide public domain. As stated in CONTRIBUTING:
This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.
All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.