From 3646d90c06d12b328a6e37efc4bad314d5e31bcc Mon Sep 17 00:00:00 2001 From: Bheesham Persaud Date: Tue, 3 Dec 2024 11:18:29 -0500 Subject: [PATCH 1/2] Logo refresh Jira: IAM-1513 --- src/images/m.svg | 14 +++++++++++--- src/images/mozilla.svg | 19 ++++++++++++++++++- 2 files changed, 29 insertions(+), 4 deletions(-) diff --git a/src/images/m.svg b/src/images/m.svg index e439a9d0..2249f5e4 100644 --- a/src/images/m.svg +++ b/src/images/m.svg @@ -1,4 +1,12 @@ - - - + + + + + + + diff --git a/src/images/mozilla.svg b/src/images/mozilla.svg index 3ab3a91d..b23d095a 100644 --- a/src/images/mozilla.svg +++ b/src/images/mozilla.svg @@ -1 +1,18 @@ - + + + + + + + + From 0266bf15ff91677d00e79b51ef426cdbdace7401 Mon Sep 17 00:00:00 2001 From: Bheesham Persaud Date: Mon, 9 Dec 2024 14:47:15 -0500 Subject: [PATCH 2/2] Local development instructions didn't work on new Apple machines Jira: IAM-1513 --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 5db4e6af..2846cce7 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,22 @@ To build for development or production, simply tag the repo with `_version_-pre` should build and deploy. You can also build directly with `NODE_ENV=development npm run build` or `NODE_ENV=production npm run build`, although this should generally not be necessary. +#### Running on Apple Silicon + +If you're using a newer Mac laptop, run these commands instead: + +```bash +# Install dependencies +docker run -v "$(PWD):/src" -w /src --entrypoint npm -it node:14 install + +# Develop locally +docker run -v "$(PWD):/src" -w /src -p 3000:3000 --entrypoint npm -it node:14 run watch +# Open your browser and go to http://localhost:3000/ + +# Build +docker run -v "$(PWD):/src" -w /src -p 3000:3000 --entrypoint npm -it node:14 run build +``` + ### Deploying code automatically The long-term plan is to have both development and production code deployed automatically via GitHub Actions. The