Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gvaldambrini/gatsby-starter-bulma-storybook
A minimal Gatsby starter which includes Bulma and Storybook
https://github.com/gvaldambrini/gatsby-starter-bulma-storybook
bulma-css gatsby-starter gatsbyjs storybook
Last synced: 3 months ago
JSON representation
A minimal Gatsby starter which includes Bulma and Storybook
- Host: GitHub
- URL: https://github.com/gvaldambrini/gatsby-starter-bulma-storybook
- Owner: gvaldambrini
- License: mit
- Created: 2018-05-01T08:11:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-02T21:52:49.000Z (over 6 years ago)
- Last Synced: 2024-10-01T01:41:46.894Z (4 months ago)
- Topics: bulma-css, gatsby-starter, gatsbyjs, storybook
- Language: JavaScript
- Homepage:
- Size: 222 KB
- Stars: 16
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bulma - gatsby-starter-bulma-storybook - A minimal Gatsby starter which includes Bulma and Storybook (Resources / Starters)
README
# gatsby-starter-bulma-storybook
A minimal Gatsby starter which includes Bulma and Storybook to create beautiful responsive web applications.
## Features
* Storybook
* Bulma (with font-awesome icons)
* (S)CSS modules
* Prettier
* ESLint
* Jest## Install
Assuming Gatsby CLI is installed, you can run:
```sh
gatsby new https://github.com/gvaldambrini/gatsby-starter-bulma-storybook
```Please note that as the starter uses yarn selective dependency resolutions you have to use yarn as npm client.
## Useful yarn commands
Execute the web application dev-server (on port 8000):
```sh
yarn develop
```Run the Storybook dev-server (on port 9001):
```sh
yarn storybook
```Execute the tests:
```sh
yarn test
```Run the linter:
```sh
yarn lint
```Reformat the code:
```sh
yarn format
```Build the web application in production mode:
```sh
yarn build
```Run a local HTML server to test the web application in production mode (on port 9000):
```sh
yarn serve
```