Skip to content

Commit 93f0e8b

Browse files
author
Dmitrii Belousov
committed
Stubbed dependencies: webpack, json-server; stubbed html table programmatically; added Readme
1 parent 0e8f3a4 commit 93f0e8b

File tree

9 files changed

+7353
-4
lines changed

9 files changed

+7353
-4
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
### How to get started?
2+
3+
1. Run
4+
```
5+
npm install
6+
```
7+
8+
Note that you might need sudo permissions for that.
9+
10+
2. Run
11+
```
12+
npm run start
13+
```

app.js

Whitespace-only changes.

db.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"companies": [
3+
{
4+
"id": 1,
5+
"name": "Fusion LLC",
6+
"status": "Qualified Lead",
7+
"created_at": "2021-04-27T03:41:56Z",
8+
"account_executive": "Abigayle Gibson",
9+
"revenue_ytd": 17000000
10+
},
11+
{
12+
"id": 2,
13+
"name": "Techopolis Ltd.",
14+
"status": "Paying Customer",
15+
"created_at": "2021-11-23T08:45:56Z",
16+
"account_executive": "Joe Bond",
17+
"revenue_ytd": 7375294
18+
},
19+
{
20+
"id": 3,
21+
"name": "Code learning LLC",
22+
"status": "Lead",
23+
"created_at": "2022-04-15T12:45:56Z",
24+
"account_executive": "Annie Ibarra",
25+
"revenue_ytd": 100000
26+
}
27+
]
28+
}

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<body>
99
<div>
1010
<h1>Hello my awesome CRM!</h1>
11-
<script type="text/javascript" src="app.js"></script>
11+
<script type="text/javascript" src="dist/bundle.js"></script>
1212
</div>
1313
</body>
1414
</html>

0 commit comments

Comments
 (0)