Skip to content

Commit

Permalink
Merge pull request #5 from chazmcgrill/gatsby-conversion
Browse files Browse the repository at this point in the history
Gatsby Conversion
  • Loading branch information
chazmcgrill authored Mar 25, 2020
2 parents 6b7178b + f3d16ac commit 55ad757
Show file tree
Hide file tree
Showing 72 changed files with 10,824 additions and 11,242 deletions.
77 changes: 59 additions & 18 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,64 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# Logs
logs
*.log

# dependencies
/node_modules
/.pnp
.pnp.js
# Runtime data
pids
*.pid
*.seed

# testing
/coverage
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# production
/build
# Coverage directory used by tools like istanbul
coverage
junit.xml

# misc
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
examples/biz-website/public/
examples/blog/public/
*.un~
dist
bin/published.js

# Build Path of Test Fixtures
test/**/public
.gatsby-context.js
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
public/
node_modules/
.cache/
.netlify

# IDE specific
.idea/
.vscode/
*.sw*

# misc
.serverless/
.eslintcache

# lock files
yarn.lock
package-lock.json
# ignore any lock file other than main lock file
!/yarn.lock

# starters are special; we want to persist the lock files
!starters/*/package-lock.json
!themes/gatsby-starter-blog-theme/package-lock.json
!themes/gatsby-starter-notes-theme/package-lock.json
!themes/gatsby-starter-theme/package-lock.json
!themes/gatsby-starter-theme-workspace/package-lock.json
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
The MIT License (MIT)

Copyright (c) 2015 gatsbyjs

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Personal illustration and art portfolio. Featuring a gallery contact form (with

[Visit Site](https://hurricanecharlie.co.uk)

Tech:
Tech:
- Gatsby
- React
- Sass
- Typescript
- React Router Dom
45 changes: 45 additions & 0 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
module.exports = {
siteMetadata: {
title: `Hurricane Charlie - The Art and Illustration of Charlie Taylor`,
description: `Hurricane Charlie is the illustration and graphic art of Charlie Taylor.`,
author: `Charlie Taylor`,
},
plugins: [
`gatsby-plugin-eslint`,
`gatsby-transformer-yaml`,
`gatsby-plugin-typescript`,
`gatsby-plugin-sass`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/src/content`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `hurricane-charlie-portfolio`,
short_name: `hc`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `minimal-ui`,
icon: `src/images/hclogo.png`, // This path is relative to the root of the site.
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
}
Loading

0 comments on commit 55ad757

Please sign in to comment.