Skip to content

Commit da7bc32

Browse files
authored
Merge pull request #445 from pharindoko/dev
Dev
2 parents e746528 + c0fd586 commit da7bc32

30 files changed

+5299
-98
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
- own custom domain
2424
- additional routes etc.
2525

26-
## Quickstart
26+
## Quickstar
2727

2828
### 1. Install Solution
2929

examples/simple-server/.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "./node_modules/gts/"
3+
}

examples/simple-server/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build

examples/simple-server/.prettierrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
...require('gts/.prettierrc'),
3+
};

examples/simple-server/db.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"posts": [
3+
{
4+
"id": 1,
5+
"title": "json-server",
6+
"author": "typicode"
7+
},
8+
{
9+
"id": 2,
10+
"title": "test",
11+
"author": "yourAuthor"
12+
}
13+
],
14+
"comments": [
15+
{
16+
"id": 1,
17+
"body": "some comment",
18+
"postId": 1
19+
}
20+
],
21+
"profile": {
22+
"name": "typicode"
23+
}
24+
}

0 commit comments

Comments
 (0)