This is the Gatsby Starter that serves as the starting point for most Ample development projects. It is built from Gatsby's Default Starter, with our pre-configured preferences to make getting started less cumbersome for you.
To start a new project from this template, run the following command:
gatsby new [PROJECT_NAME] ample/gatsby-starter-ample
cd [PROJECT_NAME]
Install Node
nvm install 15
Install node packages
yarn
Start the development server (http://localhost:8000)
yarn develop
Generate new Components, Templates and Fragments with boilerplate code to speed up the development process. Run the following command to bring up the help menu.
yarn generate
Read more about the gatsby-ample-generator plugin.
This project supports alias imports through the gatsby-alias-imports plugin. This provides a means for being able to import components without needing to know exactly where you are in the tree. It can make moving items around a little less painful.
The convention is to treat directories in our project like NPM scopes. The scope is prepended with a @
character. There are three prefixes supported out of the box:
@components
maps to ./src/components
@content
maps to ./src/content
@layout
maps to ./src/layout
@plugins
maps to ./plugins
@root
maps to ./
@snippets
maps to ./src/snippets
@src
maps to ./src
@templates
maps to ./src/templates
Unfortunately, for seamless integration across the board, we have to configure aliases for every place in which we're going to use them, which means at least Gatsby, VS Code, and Jest. Therefore, they are replicated (with the appropriate syntax) in:
gatsby-config.js
jest.config.js
jsconfig.json
.storybook/main.js
If you wish to add a custom alias to your project, make sure to touch all appropriate config files.
This starter uses Storybook for documentation, development, and visual testing. To start the server in development, run the storybook
command:
yarn storybook
This will launch a browser at localhost:6006, running storybook. Documentation specific to this project can be found in Storybook. You can also find more information about working with Gatsby within Ample's Dev Playbook.
It's recommended to set up seamless integration with your editor.
Note: When using VS Code most ESLint and Stylelint conventions will be fixed automatically.
Linters run pre-push
to ensure there are no errors or warnings.
gatsby-starter-ample is distributed under the MIT License.