https://github.com/graphile/graphile.github.io
PostGraphile (PostGraphQL) and Graphile-Build website - contributions very welcome!
https://github.com/graphile/graphile.github.io
Last synced: 6 months ago
JSON representation
PostGraphile (PostGraphQL) and Graphile-Build website - contributions very welcome!
- Host: GitHub
- URL: https://github.com/graphile/graphile.github.io
- Owner: graphile
- Created: 2017-07-26T20:32:45.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2024-12-06T14:29:10.000Z (about 1 year ago)
- Last Synced: 2024-12-06T20:59:53.496Z (about 1 year ago)
- Language: SCSS
- Homepage: https://www.graphile.org/
- Size: 125 MB
- Stars: 26
- Watchers: 7
- Forks: 127
- Open Issues: 64
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The https://graphile.org/ website for PostGraphile and Graphile Engine
## 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
```
Requires Node version 12
```bash
nvm use 12
```
If you are running Windows and encounter an error installing `fsevents`, then
try:
```bash
yarn install --ignore-optional --force
```