Skip to content

mozilla/mozmoderator

Repository files navigation

Mozilla Moderator

Code CI

Mozilla Moderator is a panel moderation webapp that enables users to view, vote and ask questions on different events.

Then panel moderators can export the questions and use them during panel discussions and Q&A.

License

All mozmoderator source files are made available under the terms of the GNU Affero General Public License (AGPL).

Frontend testing

Use npm to install the necessary tools. If you use docker for development this step is not necessary.

npm -g install bower gulp-cli

Use bower to download all Frontend libraries.

bower install

Install all required packages.

npm install

Finally use gulp to check in all main static files and run the tests.

gulp

CI & CD

This application is currently run through integration and deploy pipelines via both GitHub Actions & a background Kubernetes Flux setup leveraging Helm Charts.

Through those workflows, a Docker image is built, tagged, pushed to ECR, and deployed either to a staging (itse-apps-stage-1) or production (itse-apps-prod-1) Kubernetes cluster.

tl;dr: Push commits to main branch for a stage deploy, cut GitHub releases (following v1.2.3 format) for a production deploy.

The pipelines work as followed:

CI & Docker Builds:

  1. (manual) create your feature branch on this repository or a fork (CI will run in our repository for PRs from forks now) & add your work;
  2. (manual) push your feature branch up to GitHub & create your PR;
  3. (automated) upon push (if a branch off this repository) or PR (both our repository & forks), GitHub Actions will:
    • run linting & syntax checks on the code;
    • build the Docker image & tag it with the short git commit SHA of the latest commit to confirm the image can be built;
  4. (manual) create a PR from your feature branch to the main branch, have it reviewed, then merged into main;
  5. (automated) Upon merge into main, GitHub Actions will:
    • run linting & syntax checks on the code;
    • build the Docker image & tag it with "stg-{the 7-digit short git commit SHA of the latest commit};
    • push that Docker image & tag to our ECR repository for Moderator;

Stage Deploy:

  1. (automated): upon creation & push of any Docker Images to our ECR moderator repository with the tag pattern ^(stg-[a-f0-9]{7})$:

Production Deploy:

  1. (manual) test / QA the stage deploy as desired (moderator.allizom.org).
  2. (manual) Create a GitHub Release off of the main branch with appropriate semver updating (using the pattern ^(v[0-9]+.[0-9]+.[0-9]+)$);
  3. (automated): upon Release, GitHub Actions will:
    • run linting & syntax checks on the code;
    • pull the docker image of the latest commit in that release & tag that image with the release version;
    • push that Docker image with release tag to our ECR repository for Moderator;
  4. (automated): upon creation & push of any Docker Images to our ECR moderator repository with the tag pattern ^(v[0-9]+.[0-9]+.[0-9]+)$: