Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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! 👓

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
```