Skip to content

Commit ee065e7

Browse files
committed
Set up initial project scaffolding
0 parents  commit ee065e7

25 files changed

+30546
-0
lines changed

.gitignore

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
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 variable files
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+
72+
.vscode/
73+
.idea/

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.cache
2+
package.json
3+
package-lock.json
4+
public

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"arrowParens": "avoid",
3+
"semi": false
4+
}

LICENSE

Lines changed: 675 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# DBoM OSS Landing
2+
3+
Landing page for the DBoM Open Source Project. Built with Gatsby and Chakra

gatsby-browser.js

Lines changed: 7 additions & 0 deletions
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.com/docs/reference/config-files/gatsby-browser/
5+
*/
6+
7+
// You can delete this file if you're not using it

gatsby-config.js

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/**
2+
* Configure your Gatsby site with this file.
3+
*
4+
* See: https://www.gatsbyjs.com/docs/reference/config-files/gatsby-config/
5+
*/
6+
7+
/**
8+
* @type {import('gatsby').GatsbyConfig}
9+
*/
10+
module.exports = {
11+
siteMetadata: {
12+
title: `DBoM - Standardizing Attestation Sharing`,
13+
description: `The Digital Bill of Materials (DBoM) provides the missing layer for policy controlled attestation sharing between organizations.`,
14+
author: `@dbomproject`,
15+
siteUrl: `https://dbom.io`,
16+
},
17+
plugins: [
18+
`gatsby-plugin-image`,
19+
{
20+
resolve: '@chakra-ui/gatsby-plugin',
21+
options: {
22+
/**
23+
* @property {boolean} [resetCSS=true]
24+
* if false, this plugin will not use `<CSSReset />
25+
*/
26+
resetCSS: true,
27+
/**
28+
* @property {boolean} [isUsingColorMode=true]
29+
* if false, this plugin will not use <ColorModeProvider />
30+
*/
31+
isUsingColorMode: true,
32+
/**
33+
* @property {boolean} [isBaseProvider=false]
34+
* if true, will render `<ChakraBaseProvider>`
35+
*/
36+
isBaseProvider: false,
37+
},
38+
},
39+
{
40+
resolve: `gatsby-source-filesystem`,
41+
options: {
42+
name: `images`,
43+
path: `${__dirname}/src/images`,
44+
},
45+
},
46+
`gatsby-transformer-sharp`,
47+
`gatsby-plugin-sharp`,
48+
{
49+
resolve: `gatsby-plugin-manifest`,
50+
options: {
51+
name: `gatsby-starter-default`,
52+
short_name: `starter`,
53+
start_url: `/`,
54+
background_color: `#663399`,
55+
// This will impact how browsers show your PWA/website
56+
// https://css-tricks.com/meta-theme-color-and-trickery/
57+
// theme_color: `#663399`,
58+
display: `minimal-ui`,
59+
icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
60+
},
61+
},
62+
],
63+
}

gatsby-ssr.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/**
2+
* Implement Gatsby's SSR (Server Side Rendering) APIs in this file.
3+
*
4+
* See: https://www.gatsbyjs.com/docs/reference/config-files/gatsby-ssr/
5+
*/
6+
7+
/**
8+
* @type {import('gatsby').GatsbySSR['onRenderBody']}
9+
*/
10+
exports.onRenderBody = ({ setHtmlAttributes }) => {
11+
setHtmlAttributes({ lang: `en` })
12+
}

0 commit comments

Comments
 (0)