Skip to content

Commit e674845

Browse files
authored
Merge pull request #384 from bheesham/change-logo
Logo refresh
2 parents ef06f95 + 0266bf1 commit e674845

File tree

3 files changed

+45
-4
lines changed

3 files changed

+45
-4
lines changed

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,22 @@ To build for development or production, simply tag the repo with `_version_-pre`
3939
should build and deploy. You can also build directly with `NODE_ENV=development npm run build` or
4040
`NODE_ENV=production npm run build`, although this should generally not be necessary.
4141

42+
#### Running on Apple Silicon
43+
44+
If you're using a newer Mac laptop, run these commands instead:
45+
46+
```bash
47+
# Install dependencies
48+
docker run -v "$(PWD):/src" -w /src --entrypoint npm -it node:14 install
49+
50+
# Develop locally
51+
docker run -v "$(PWD):/src" -w /src -p 3000:3000 --entrypoint npm -it node:14 run watch
52+
# Open your browser and go to http://localhost:3000/
53+
54+
# Build
55+
docker run -v "$(PWD):/src" -w /src -p 3000:3000 --entrypoint npm -it node:14 run build
56+
```
57+
4258
### Deploying code automatically
4359

4460
The long-term plan is to have both development and production code deployed automatically via GitHub Actions. The

src/images/m.svg

+11-3
Loading

src/images/mozilla.svg

+18-1
Loading

0 commit comments

Comments
 (0)