Skip to content

Commit

Permalink
add express
Browse files Browse the repository at this point in the history
  • Loading branch information
one92tb committed Sep 1, 2018
1 parent 2542392 commit b5a78e3
Show file tree
Hide file tree
Showing 56 changed files with 13,887 additions and 10,930 deletions.
27 changes: 6 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,6 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
.idea/
.vscode/
node_modules/
build/
tmp/
temp/
Binary file modified README.md
Binary file not shown.
21 changes: 21 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
Binary file added client/README.md
Binary file not shown.
19 changes: 19 additions & 0 deletions client/data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"posts": [
{
"id": 1,
"title": "json-server",
"author": "typicode"
}
],
"comments": [
{
"id": 1,
"body": "some comment",
"postId": 1
}
],
"profile": {
"name": "typicode"
}
}
Loading

0 comments on commit b5a78e3

Please sign in to comment.