Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/graphile/specnews
SpecNews the spec news in specs! 👓
https://github.com/graphile/specnews
anchor gatsby graphql podcast
Last synced: about 1 month ago
JSON representation
SpecNews the spec news in specs! 👓
- Host: GitHub
- URL: https://github.com/graphile/specnews
- Owner: graphile
- Created: 2022-06-06T22:15:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-03T11:05:05.000Z (over 2 years ago)
- Last Synced: 2024-11-14T10:34:06.685Z (3 months ago)
- Topics: anchor, gatsby, graphql, podcast
- Language: TypeScript
- Homepage: https://specnewspod.com
- Size: 1.13 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spec News
This is the website for the SpecNews podcast; it's written using a fairly standard Gatsby setup and some simple React components and CSS. We share it for your interest, though if you spot a typo feel free to send a patch!
## Building
```bash
yarn install --force # Because we sometimes get issues with sharp
yarn run develop
```## View in Browser
You can view the website in browser at http://localhost:8000/
## Troubleshooting
Gatsby sometimes goes wrong/gets confused. First port of call is to kill it,
then clear the `.cache` and `public` folders:```bash
rm -Rf .cache public
```If you are running Windows and encounter an error installing `fsevents`, then
try:```bash
yarn install --ignore-optional --force
```