Skip to content

Commit

Permalink
Merge branch 'edge' into te-reports-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
tevko authored Nov 27, 2024
2 parents e3f467a + 0094417 commit 62ad4c2
Show file tree
Hide file tree
Showing 19 changed files with 306 additions and 309 deletions.
82 changes: 0 additions & 82 deletions .github/workflows/depcheck.yml

This file was deleted.

62 changes: 62 additions & 0 deletions .github/workflows/deploy-preprod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Deploy Preprod

on:
push:
branches:
- edge

jobs:
deploy-backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Login to Heroku
uses: akhileshns/[email protected]
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
heroku_app_name: "polis-preprod"
heroku_email: ${{secrets.HEROKU_EMAIL}}
branch: "edge"

- name: Deploy to Heroku
run: |
git push https://heroku:${{secrets.HEROKU_API_KEY}}@git.heroku.com/polis-preprod.git edge:main
deploy-static:
runs-on: ubuntu-latest
needs: deploy-backend
steps:
- uses: actions/checkout@v4

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_ROLE_ARN }}
aws-region: us-east-1

- name: Build static assets
env:
EMBED_SERVICE_HOSTNAME: preprod.pol.is
ENABLE_TWITTER_WIDGETS: true
GA_TRACKING_ID: G-WVP78N35QR
SERVICE_URL: https://preprod.pol.is
run: |
docker compose create --build --force-recreate file-server
docker cp file-server:/app/build/build ./build
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'

- name: Install dependencies
run: |
python -m pip install -r deploy/requirements.txt
- name: Deploy to S3
run: |
python deploy/deploy-static-assets.py --bucket edge.static-assets.pol.is
6 changes: 3 additions & 3 deletions client-admin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ FROM docker.io/node:18-alpine

ARG ENABLE_TWITTER_WIDGETS
ARG FB_APP_ID
ENV ENABLE_TWITTER_WIDGETS ${ENABLE_TWITTER_WIDGETS}
ENV FB_APP_ID ${FB_APP_ID}
ENV ENABLE_TWITTER_WIDGETS=${ENABLE_TWITTER_WIDGETS}
ENV FB_APP_ID=${FB_APP_ID}

# Set default NODE_ENV to production unless overridden at build time with --build-arg NODE_ENV=development
ARG NODE_ENV
ENV NODE_ENV ${NODE_ENV:-production}
ENV NODE_ENV=${NODE_ENV:-production}

WORKDIR /app

Expand Down
2 changes: 0 additions & 2 deletions client-admin/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ module.exports = (env, options) => {

function writeHeadersJsonHtml() {
const headersData = {
'x-amz-acl': 'public-read',
'Content-Type': 'text/html; charset=UTF-8',
'Cache-Control': 'no-cache'
}
Expand All @@ -107,7 +106,6 @@ module.exports = (env, options) => {

function writeHeadersJsonJs() {
const headersData = {
'x-amz-acl': 'public-read',
'Content-Encoding': 'gzip',
'Content-Type': 'application/javascript',
'Cache-Control':
Expand Down
8 changes: 4 additions & 4 deletions client-participation/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ FROM docker.io/node:18-alpine
ARG EMBED_SERVICE_HOSTNAME
ARG FB_APP_ID
ARG GA_TRACKING_ID
ENV EMBED_SERVICE_HOSTNAME ${EMBED_SERVICE_HOSTNAME}
ENV FB_APP_ID ${FB_APP_ID}
ENV GA_TRACKING_ID ${GA_TRACKING_ID}
ENV EMBED_SERVICE_HOSTNAME=${EMBED_SERVICE_HOSTNAME}
ENV FB_APP_ID=${FB_APP_ID}
ENV GA_TRACKING_ID=${GA_TRACKING_ID}

# Set default NODE_ENV to production unless overridden at build time with --build-arg NODE_ENV=development
ARG NODE_ENV
ENV NODE_ENV ${NODE_ENV:-production}
ENV NODE_ENV=${NODE_ENV:-production}

WORKDIR /app

Expand Down
3 changes: 0 additions & 3 deletions client-participation/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ function writeHeadersJsonForOutputFiles(isDev) {

function writeHeadersJsonHtml() {
const headersData = {
'x-amz-acl': 'public-read',
'Content-Type': 'text/html; charset=UTF-8',
'Cache-Control': 'no-cache'
}
Expand All @@ -42,7 +41,6 @@ function writeHeadersJsonForOutputFiles(isDev) {

function writeHeadersJsonJs() {
const headersData = {
'x-amz-acl': 'public-read',
...(!isDev && { 'Content-Encoding': 'gzip' }),
'Content-Type': 'application/javascript',
'Cache-Control':
Expand All @@ -54,7 +52,6 @@ function writeHeadersJsonForOutputFiles(isDev) {

function writeHeadersJsonCss() {
const headersData = {
'x-amz-acl': 'public-read',
...(!isDev && { 'Content-Encoding': 'gzip' }),
'Content-Type': 'text/css',
'Cache-Control':
Expand Down
6 changes: 3 additions & 3 deletions client-report/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM docker.io/node:18-alpine

# Set default NODE_ENV to production unless overridden at build time with --build-arg NODE_ENV=development
ARG NODE_ENV
ENV NODE_ENV ${NODE_ENV:-production}
ENV NODE_ENV=${NODE_ENV:-production}

WORKDIR /app

Expand All @@ -23,7 +23,7 @@ COPY . .
# Or may be passed in at build time with --build-arg GIT_HASH=$(git rev-parse --short HEAD)
ARG GIT_HASH
ARG SERVICE_URL
ENV GIT_HASH ${GIT_HASH:-placeholder}
ENV SERVICE_URL ${SERVICE_URL}
ENV GIT_HASH=${GIT_HASH:-placeholder}
ENV SERVICE_URL=${SERVICE_URL}

CMD npm run build:prod
3 changes: 0 additions & 3 deletions client-report/writeHeadersJsonTask.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ module.exports = function writeHeadersJson() {

function writeHeadersJsonCss() {
const headersData = {
'x-amz-acl': 'public-read',
'Content-Type': 'text/css',
'Cache-Control':
'no-transform,public,max-age=31536000,s-maxage=31536000'
Expand All @@ -23,7 +22,6 @@ module.exports = function writeHeadersJson() {

function writeHeadersJsonHtml() {
const headersData = {
'x-amz-acl': 'public-read',
'Content-Type': 'text/html; charset=UTF-8',
'Cache-Control': 'no-cache'
}
Expand All @@ -32,7 +30,6 @@ module.exports = function writeHeadersJson() {

function writeHeadersJsonJs() {
const headersData = {
'x-amz-acl': 'public-read',
'Content-Type': 'application/javascript',
'Cache-Control':
'no-transform,public,max-age=31536000,s-maxage=31536000'
Expand Down
18 changes: 18 additions & 0 deletions deploy/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Python
__pycache__/
*.py[cod]
*$py.class
.Python
env/
.env
venv/
.venv
.pytest_cache/
.mypy_cache/

# IDE
.vscode/
.idea/

# OS
.DS_Store
87 changes: 87 additions & 0 deletions deploy/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
# Polis Deploy

Tools for deploying Polis static assets to S3.

## Prerequisites

- python 3.8+
- aws cli
- heroku cli

### Push the backend code to Heroku

```bash
heroku login
git push <heroku-remote> edge:main
```

_Replace `<heroku-remote>` with the appropriate heroku remote, e.g. heroku-preprod_

### Build the Polis static assets

from the root of the project:

```bash
make ENV_FILE=<env-file> PROD build-web-assets
```

### AWS CLI

Log into AWS SSO and configure your AWS CLI with the appropriate profile.

#### First time setup (or to refresh credentials)

```bash
aws configure sso
```

follow the prompts to configure your profile.
e.g.

> SSO session name: polis-deploy
>
> SSO start URL: [aws-start-url]
>
> SSO region: us-east-1
>
> SSO registration scopes: [enter for default]
>
> CLI default client Region: us-east-1
>
> CLI default output format: json
>
> CLI profile name: polis-deploy
#### Login with the above profile

```bash
export AWS_PROFILE=polis-deploy

aws sso login

# Verify that you are logged in
aws sts get-caller-identity
```

## Python Setup

```bash
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip install -r dev-requirements.txt
```

## Usage

```bash
python deploy-static-assets.py --bucket <bucket-name>
```

_Replace `<bucket-name>` with the appropriate bucket name, e.g. edge.static-assets.pol.is_

Or from the root of the project:

```bash
python deploy/deploy-static-assets.py --bucket <bucket-name>
```
Loading

0 comments on commit 62ad4c2

Please sign in to comment.