Skip to content

Commit 4b98600

Browse files
committed
init gatsby project
1 parent 6f0e292 commit 4b98600

8 files changed

+20722
-9
lines changed

.gitignore

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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+
**/node_modules/**
39+
40+
# Typescript v1 declaration files
41+
typings/
42+
43+
# Optional npm cache directory
44+
.npm
45+
46+
# Optional eslint cache
47+
.eslintcache
48+
49+
# Optional REPL history
50+
.node_repl_history
51+
52+
# Output of 'npm pack'
53+
*.tgz
54+
55+
# Yarn Integrity file
56+
.yarn-integrity
57+
58+
# dotenv environment variables file
59+
.env
60+
.env.*
61+
!.env.example
62+
63+
.cache
64+
**/.cache
65+
public
66+
67+
.idea
68+
.vscode
69+
.DS_Store

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 LekoArts
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.

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# VU Golf Cart website
2+
3+
Uses the Gatsby theme https://github.com/LekoArts/gatsby-starter-minimal-blog.
4+

gatsby-config.js

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
require(`dotenv`).config({
2+
path: `.env`,
3+
})
4+
5+
module.exports = {
6+
siteMetadata: {
7+
siteTitle: `VU Autonomous Golf Cart`,
8+
siteTitleAlt: `VU Golf Cart`,
9+
siteHeadline: `VU Autonomous Golf Cart Website`,
10+
siteUrl: `https://vugolfcart.github.io`,
11+
siteDescription: `A project on autonomous driving at Vanderbilt University`,
12+
siteLanguage: `en`,
13+
author: `vugolfcart`,
14+
navigation: [
15+
{
16+
title: `Blog`,
17+
slug: `/blog`,
18+
},
19+
{
20+
title: `About`,
21+
slug: `/about`,
22+
},
23+
],
24+
},
25+
plugins: [
26+
{
27+
resolve: `@lekoarts/gatsby-theme-minimal-blog`,
28+
options: {},
29+
},
30+
{
31+
resolve: `gatsby-plugin-google-analytics`,
32+
options: {
33+
trackingId: process.env.GOOGLE_ANALYTICS_ID,
34+
},
35+
},
36+
`gatsby-plugin-sitemap`,
37+
{
38+
resolve: `gatsby-plugin-manifest`,
39+
options: {
40+
name: `minimal-blog - @lekoarts/gatsby-theme-minimal-blog`,
41+
short_name: `minimal-blog`,
42+
description: `Typography driven, feature-rich blogging theme with minimal aesthetics. Includes tags/categories support and extensive features for code blocks such as live preview, line numbers, and code highlighting.`,
43+
start_url: `/`,
44+
background_color: `#fff`,
45+
theme_color: `#6B46C1`,
46+
display: `standalone`,
47+
icons: [
48+
{
49+
src: `/android-chrome-192x192.png`,
50+
sizes: `192x192`,
51+
type: `image/png`,
52+
},
53+
{
54+
src: `/android-chrome-512x512.png`,
55+
sizes: `512x512`,
56+
type: `image/png`,
57+
},
58+
],
59+
},
60+
},
61+
`gatsby-plugin-offline`,
62+
// `gatsby-plugin-webpack-bundle-analyser-v2`,
63+
],
64+
}

index.html

-1
This file was deleted.

manifest.json

-8
This file was deleted.

0 commit comments

Comments
 (0)