Skip to content

dearborn-coding-club/website-base-frontend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dearborn Coding Club Frontend

A nice little website.

Dearborn Coding Club Frontend is a dynamic, React-based website for the Dearborn Coding Club meetup group.

Table of Contents

  1. Architecture
  2. Running
  3. Building
  4. Deploying
  5. (Re)generating TLS Certificates

Architecture


The entire architecture, currently, is as follows:

sequenceDiagram
    participant FE as Front End
    participant BE as Backend (Django)
    participant SB as Supabase Postgres
    participant MA as Meetup.com API
    
    FE->>BE: Send request
    
    alt Data request
        BE->>SB: Request data
        SB-->>BE: Return data
        BE-->>FE: Forward data
    else Meetup.com API request
        BE->>MA: Request data
        MA-->>BE: Return data
        BE-->>FE: Forward response
    else Notes operation
        BE->>SB: Perform CRUD on Notes model
        SB-->>BE: Confirm operation
        BE-->>FE: Send confirmation/result
    end
Loading

Running


Running locally

  • Run npm install
  • Run npm run dev

Running from the goStatic docker container locally

  • Run docker build . --tag frontend
    • Builds the docker container with the static asset microservice.
  • Run docker run -p 8043:8043 frontend
    • Runs the docker container locally with the server ports forwarded.

Building


  • Run npm run build

Deploying


Fly.io

We currently use Fly.io as the managed service for hosting the website.

We deploy the site via GitHub Actions when a contributor merges a PR into the main branch. When deployed, CI initiates the Fly Deploy action, which builds the site and pushes it to Fly.io servers. The Fly.io server is pointed to by a CNAME record in our Squarespace account. The Squarespace account owns the purchased domain of https://dearborncodingclub.com, which our site is pointed to.

Deploying to Fly.io

To deploy the application manually you must install the flyctl CLI tool. To install the flyctl plugin, follow the instructions available here. After flyctl has been installed, run flyctl deploy from the base directory, after logging in to an admin account locally (flyctl auth login).

Deploying to Staging

We currently use AWS S3 buckets to host a staging environment (http://stage.dearborncodingclub.com) that is used for cloud testing before deploying to production. In order to leverage the staging environment, you must follow these steps:

  1. Create a branch with working changes, of the naming pattern feature/<feature-name>, with <feature-name> being the name of the added feature.
  2. Push the branch to the origin repository.
  3. Create a pull request.
  4. Wait for the Upload Website CI action to complete.
  5. Observe your proposed changes in the staging environment (http://stage.dearborncodingclub.com).

(Re)generating TLS Certificates


TLS certificates are used to validate HTTPS requests between browser clients and the servers that host our website. When the certificates become invalid after a predetermined expirations date, requests for the website will be flagged by the browser as insecure, and eventually blocked.

Dearborn Coding Club leverages Fly.io's CLI tooling to generate TLS certificates. Adding certificates to a new dearborncodingclub.com instance is done with the fly certs add dearborncodingclub.com command.

Note

Fly.io generated TLS certifications are valid for 90 days, and afterwards need to be regenerated.

Fly.io handles our TLS certificates as part of their managed hosting service, though when an certificate is removed from the user interface we need to manually generated a Let's Encrypt certificate the fly certs add dearborncodingclub.com command.