Skip to content

Commit 3c220b1

Browse files
author
Alban Bailly
committed
initial commit
0 parents  commit 3c220b1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+28721
-0
lines changed

.gitignore

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (http://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
38+
39+
# Typescript v1 declaration files
40+
typings/
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional eslint cache
46+
.eslintcache
47+
48+
# Optional REPL history
49+
.node_repl_history
50+
51+
# Output of 'npm pack'
52+
*.tgz
53+
54+
# dotenv environment variables file
55+
.env
56+
57+
# gatsby files
58+
.cache/
59+
public
60+
61+
# Mac files
62+
.DS_Store
63+
64+
# Yarn
65+
yarn-error.log
66+
.pnp/
67+
.pnp.js
68+
# Yarn Integrity file
69+
.yarn-integrity
70+
71+
# Linode base theme
72+
linode-hugo-theme

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 gatsbyjs
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

README.md

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<!-- AUTO-GENERATED-CONTENT:START (STARTER) -->
2+
<p align="center">
3+
<a href="https://www.gatsbyjs.org">
4+
<img alt="Gatsby" src="https://www.gatsbyjs.org/monogram.svg" width="60" />
5+
</a>
6+
</p>
7+
<h1 align="center">
8+
Gatsby's default starter
9+
</h1>
10+
11+
Kick off your project with this default boilerplate. This starter ships with the main Gatsby configuration files you might need to get up and running blazing fast with the blazing fast app generator for React.
12+
13+
_Have another more specific idea? You may want to check out our vibrant collection of [official and community-created starters](https://www.gatsbyjs.org/docs/gatsby-starters/)._
14+
15+
## 🚀 Quick start
16+
17+
1. **Create a Gatsby site.**
18+
19+
Use the Gatsby CLI to create a new site, specifying the default starter.
20+
21+
```sh
22+
# create a new Gatsby site using the default starter
23+
npx gatsby new my-default-starter https://github.com/gatsbyjs/gatsby-starter-default
24+
```
25+
26+
1. **Start developing.**
27+
28+
Navigate into your new site’s directory and start it up.
29+
30+
```sh
31+
cd my-default-starter/
32+
gatsby develop
33+
```
34+
35+
1. **Open the source code and start editing!**
36+
37+
Your site is now running at `http://localhost:8000`!
38+
39+
_Note: You'll also see a second link: _`http://localhost:8000/___graphql`_. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the [Gatsby tutorial](https://www.gatsbyjs.org/tutorial/part-five/#introducing-graphiql)._
40+
41+
Open the `my-default-starter` directory in your code editor of choice and edit `src/pages/index.js`. Save your changes and the browser will update in real time!
42+
43+
## 🧐 What's inside?
44+
45+
A quick look at the top-level files and directories you'll see in a Gatsby project.
46+
47+
.
48+
├── node_modules
49+
├── src
50+
├── .gitignore
51+
├── gatsby-browser.js
52+
├── gatsby-config.js
53+
├── gatsby-node.js
54+
├── gatsby-ssr.js
55+
├── LICENSE
56+
├── package-lock.json
57+
├── package.json
58+
└── README.md
59+
60+
1. **`/node_modules`**: This directory contains all of the modules of code that your project depends on (npm packages) are automatically installed.
61+
62+
2. **`/src`**: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template. `src` is a convention for “source code”.
63+
64+
3. **`.gitignore`**: This file tells git which files it should not track / not maintain a version history for.
65+
66+
4. **`.prettierrc`**: This is a configuration file for [Prettier](https://prettier.io/). Prettier is a tool to help keep the formatting of your code consistent.
67+
68+
5. **`gatsby-browser.js`**: This file is where Gatsby expects to find any usage of the [Gatsby browser APIs](https://www.gatsbyjs.org/docs/browser-apis/) (if any). These allow customization/extension of default Gatsby settings affecting the browser.
69+
70+
6. **`gatsby-config.js`**: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins you’d like to include, etc. (Check out the [config docs](https://www.gatsbyjs.org/docs/gatsby-config/) for more detail).
71+
72+
7. **`gatsby-node.js`**: This file is where Gatsby expects to find any usage of the [Gatsby Node APIs](https://www.gatsbyjs.org/docs/node-apis/) (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process.
73+
74+
8. **`gatsby-ssr.js`**: This file is where Gatsby expects to find any usage of the [Gatsby server-side rendering APIs](https://www.gatsbyjs.org/docs/ssr-apis/) (if any). These allow customization of default Gatsby settings affecting server-side rendering.
75+
76+
9. **`LICENSE`**: Gatsby is licensed under the MIT license.
77+
78+
10. **`package-lock.json`** (See `package.json` below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. **(You won’t change this file directly).**
79+
80+
11. **`package.json`**: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc). This manifest is how npm knows which packages to install for your project.
81+
82+
12. **`README.md`**: A text file containing useful reference information about your project.
83+
84+
## 🎓 Learning Gatsby
85+
86+
Looking for more guidance? Full documentation for Gatsby lives [on the website](https://www.gatsbyjs.org/). Here are some places to start:
87+
88+
- **For most developers, we recommend starting with our [in-depth tutorial for creating a site with Gatsby](https://www.gatsbyjs.org/tutorial/).** It starts with zero assumptions about your level of ability and walks through every step of the process.
89+
90+
- **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.org/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar.
91+
92+
## 💫 Deploy
93+
94+
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-default)
95+
96+
<!-- AUTO-GENERATED-CONTENT:END -->

gatsby-browser.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* Implement Gatsby's Browser APIs in this file.
3+
*
4+
* See: https://www.gatsbyjs.org/docs/browser-apis/
5+
*/
6+
7+
// You can delete this file if you're not using it

gatsby-config.js

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
module.exports = {
2+
siteMetadata: {
3+
title: `Linode Developer Tools`,
4+
description: `Linode API Documentation, Guides, and Tools`
5+
},
6+
plugins: [
7+
`gatsby-transformer-remark`,
8+
{
9+
resolve: `gatsby-source-filesystem`,
10+
options: {
11+
name: `content`,
12+
path: `${__dirname}/src/content`
13+
}
14+
},
15+
`gatsby-plugin-react-helmet`,
16+
{
17+
resolve: `gatsby-source-filesystem`,
18+
options: {
19+
name: `images`,
20+
path: `${__dirname}/src/images`
21+
}
22+
},
23+
`gatsby-transformer-sharp`,
24+
`gatsby-plugin-sharp`,
25+
{
26+
resolve: `gatsby-plugin-manifest`,
27+
options: {
28+
name: `gatsby-starter-default`,
29+
short_name: `starter`,
30+
start_url: `/`,
31+
background_color: `#ccc`,
32+
theme_color: `#666`,
33+
display: `minimal-ui`,
34+
icon: `src/images/logo.svg` // This path is relative to the root of the site.
35+
}
36+
},
37+
`gatsby-plugin-postcss`,
38+
{
39+
resolve: `gatsby-plugin-purgecss`,
40+
options: {
41+
develop: true,
42+
tailwind: true,
43+
purgeOnly: ["src/css/main.css"] // Purge only tailwind
44+
}
45+
}
46+
// this (optional) plugin enables Progressive Web App + Offline functionality
47+
// To learn more, visit: https://gatsby.app/offline
48+
// 'gatsby-plugin-offline',
49+
]
50+
};

gatsby-node.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* Implement Gatsby's Node APIs in this file.
3+
*
4+
* See: https://www.gatsbyjs.org/docs/node-apis/
5+
*/
6+
7+
// You can delete this file if you're not using it

gatsby-ssr.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* Implement Gatsby's SSR (Server Side Rendering) APIs in this file.
3+
*
4+
* See: https://www.gatsbyjs.org/docs/ssr-apis/
5+
*/
6+
7+
// You can delete this file if you're not using it

0 commit comments

Comments
 (0)