Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyde committed Aug 13, 2018
0 parents commit 4ddc3a0
Show file tree
Hide file tree
Showing 49 changed files with 17,969 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Project dependencies
.cache
node_modules
yarn-error.log

# Build directory
/public
.DS_Store

# Project files
*.psd
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
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.

16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Gatsby based personal portfolio page
Based on the Gatsby.js default starter, customized to my personal needs

For an overview of the project structure please refer to the [Gatsby documentation - Building with Components](https://www.gatsbyjs.org/docs/building-with-components/).

## Install

Make sure that you have the Gatsby CLI program installed:
```sh
npm install --global gatsby-cli
```

Then you can run it by:
```sh
gatsby develop
```
26 changes: 26 additions & 0 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
siteMetadata: {
title: 'Timothy.de | ',
},
plugins: [
`gatsby-plugin-styled-components`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sass`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `data`,
path: `${__dirname}/src/`
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `img`,
path: `${__dirname}/src/static/`
}
}
],
}
48 changes: 48 additions & 0 deletions npm-debug.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
0 info it worked if it ends with ok
1 verbose cli [ '/Users/timothy/.nvm/versions/node/v6.11.3/bin/node',
1 verbose cli '/Users/timothy/.nvm/versions/node/v6.11.3/bin/npm',
1 verbose cli 'run',
1 verbose cli 'develop' ]
2 info using [email protected]
3 info using [email protected]
4 verbose run-script [ 'predevelop', 'develop', 'postdevelop' ]
5 info lifecycle [email protected]~predevelop: [email protected]
6 silly lifecycle [email protected]~predevelop: no script for predevelop, continuing
7 info lifecycle [email protected]~develop: [email protected]
8 verbose lifecycle [email protected]~develop: unsafe-perm in lifecycle true
9 verbose lifecycle [email protected]~develop: PATH: /Users/timothy/.nvm/versions/node/v6.11.3/lib/node_modules/npm/bin/node-gyp-bin:/Users/timothy/timothyde/web-page/node_modules/.bin:/Users/timothy/.nvm/versions/node/v6.11.3/bin:/Library/Frameworks/Python.framework/Versions/3.6/bin:/Users/timothy/anaconda3/bin:/Users/timothy/Library/Python/2.7/bin/:/usr/local/bin:/usr/local/sbin:~/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/Postgres.app/Contents/Versions/latest/bin
10 verbose lifecycle [email protected]~develop: CWD: /Users/timothy/timothyde/web-page
11 silly lifecycle [email protected]~develop: Args: [ '-c', 'gatsby develop' ]
12 silly lifecycle [email protected]~develop: Returned: code: 1 signal: null
13 info lifecycle [email protected]~develop: Failed to exec develop script
14 verbose stack Error: [email protected] develop: `gatsby develop`
14 verbose stack Exit status 1
14 verbose stack at EventEmitter.<anonymous> (/Users/timothy/.nvm/versions/node/v6.11.3/lib/node_modules/npm/lib/utils/lifecycle.js:255:16)
14 verbose stack at emitTwo (events.js:106:13)
14 verbose stack at EventEmitter.emit (events.js:191:7)
14 verbose stack at ChildProcess.<anonymous> (/Users/timothy/.nvm/versions/node/v6.11.3/lib/node_modules/npm/lib/utils/spawn.js:40:14)
14 verbose stack at emitTwo (events.js:106:13)
14 verbose stack at ChildProcess.emit (events.js:191:7)
14 verbose stack at maybeClose (internal/child_process.js:920:16)
14 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:230:5)
15 verbose pkgid [email protected]
16 verbose cwd /Users/timothy/timothyde/web-page
17 error Darwin 17.7.0
18 error argv "/Users/timothy/.nvm/versions/node/v6.11.3/bin/node" "/Users/timothy/.nvm/versions/node/v6.11.3/bin/npm" "run" "develop"
19 error node v6.11.3
20 error npm v3.10.10
21 error code ELIFECYCLE
22 error [email protected] develop: `gatsby develop`
22 error Exit status 1
23 error Failed at the [email protected] develop script 'gatsby develop'.
23 error Make sure you have the latest version of node.js and npm installed.
23 error If you do, this is most likely a problem with the gatsby-starter-default package,
23 error not with npm itself.
23 error Tell the author that this fails on your system:
23 error gatsby develop
23 error You can get information on how to open an issue for this project with:
23 error npm bugs gatsby-starter-default
23 error Or if that isn't available, you can get their info via:
23 error npm owner ls gatsby-starter-default
23 error There is likely additional logging output above.
24 verbose exit [ 1, true ]
Loading

0 comments on commit 4ddc3a0

Please sign in to comment.