Skip to content
This repository has been archived by the owner on Dec 25, 2022. It is now read-only.

Commit

Permalink
breaking: restructure projekt.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Faust committed Jul 16, 2019
1 parent 59e4ac8 commit 1f6ba23
Show file tree
Hide file tree
Showing 41 changed files with 49,028 additions and 1,045 deletions.
15 changes: 15 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-dynamic-import",
"babel-plugin-macros"
]
}
73 changes: 72 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,72 @@
node_modules
__assets
deploy.sh

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

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

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

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

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

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

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# dotenv environment variables file
.env

# gatsby files
.cache/
public

# Mac files
.DS_Store

# Yarn
yarn-error.log
.pnp/
.pnp.js
# Yarn Integrity file
.yarn-integrity
24 changes: 16 additions & 8 deletions db.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,26 @@
{
"title": "Ich bin Arbeit 1",
"text": "Reiciendis rerum et animi sint. Sunt suscipit maiores ut quasi fugit animi officia. Maxime natus dolor nam rerum qui atque animi. Et molestias odit explicabo harum ex in quia adip.",
"image": {
"url": "https://images.unsplash.com/photo-1461988320302-91bde64fc8e4",
"modified": "12345678"
}
"images": [
{
"url": "https://images.unsplash.com/photo-1461988320302-91bde64fc8e4",
"modified": "12345678"
},
{
"url": "https://images.unsplash.com/photo-1461988320302-91bde64fc8e4",
"modified": "12345678"
},
]
},
{
"title": "Ich bin Arbeit 2",
"text": "Reiciendis rerum et animi sint. Sunt suscipit maiores ut quasi fugit animi officia. Maxime natus dolor nam rerum qui atque animi. Et molestias odit explicabo harum ex in quia adip.",
"image": {
"url": "https://images.unsplash.com/photo-1461988320302-91bde64fc8e4",
"modified": "12345678"
}
"images": [
{
"url": "https://images.unsplash.com/photo-1461988320302-91bde64fc8e4",
"modified": "12345678"
}
]
}
]
}
Loading

0 comments on commit 1f6ba23

Please sign in to comment.