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

https://github.com/instafluff/website

Website! https://www.instafluff.tv
https://github.com/instafluff/website

Last synced: 4 months ago
JSON representation

Website! https://www.instafluff.tv

Awesome Lists containing this project

README

          

# Website
Website! https://www.instafluff.tv

This site is built using the Gatsby framework (which is built using React).
It also uses the Bulma CSS framework.

## Resources ##

- https://www.gatsbyjs.org/docs/
- https://bulma.io/documentation/

## Dev Instructions ##

Install Gatsby CLI
```
npm install --global gatsby-cli
```

Run in development mode
```
gatsby develop
```

Open the local URL in your browser to view the website while developing (by default it will be http://localhost:8000/)

## Production Build Instructions ##

Execute the Gatsby build command:
```
gatsby build
```
The static site files will be generated in the *public* folder.

To serve the production build locally:
```
gatsby serve
```