-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4dca0b0
commit 53cb168
Showing
3 changed files
with
19 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
image: node:latest | ||
|
||
# This folder is cached between builds | ||
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache | ||
cache: | ||
paths: | ||
- node_modules/ | ||
|
||
pages: | ||
script: | ||
- yarn install | ||
- ./node_modules/.bin/gatsby build | ||
artifacts: | ||
paths: | ||
- public | ||
only: | ||
- master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1 @@ | ||
# gatsby-starter-hello-world | ||
Starter with the bare essentials needed for a [Gatsby](https://www.gatsbyjs.org/) site | ||
|
||
Install this starter (assuming Gatsby is installed) by running from your CLI: | ||
``` | ||
gatsby new gatsby-site https://github.com/gatsbyjs/gatsby-starter-hello-world | ||
``` | ||
|
||
## Running in development | ||
`gatsby develop` | ||
# built with GatsbyJS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
module.exports = { | ||
plugins: [ | ||
], | ||
plugins: [], | ||
}; |