Skip to content

Commit

Permalink
Stubbed dependencies: webpack, json-server; stubbed html table progra…
Browse files Browse the repository at this point in the history
…mmatically; added Readme
  • Loading branch information
Dmitrii Belousov committed Apr 27, 2022
1 parent 0e8f3a4 commit 93f0e8b
Show file tree
Hide file tree
Showing 9 changed files with 7,353 additions and 4 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
### How to get started?

1. Run
```
npm install
```

Note that you might need sudo permissions for that.

2. Run
```
npm run start
```
Empty file removed app.js
Empty file.
28 changes: 28 additions & 0 deletions db.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"companies": [
{
"id": 1,
"name": "Fusion LLC",
"status": "Qualified Lead",
"created_at": "2021-04-27T03:41:56Z",
"account_executive": "Abigayle Gibson",
"revenue_ytd": 17000000
},
{
"id": 2,
"name": "Techopolis Ltd.",
"status": "Paying Customer",
"created_at": "2021-11-23T08:45:56Z",
"account_executive": "Joe Bond",
"revenue_ytd": 7375294
},
{
"id": 3,
"name": "Code learning LLC",
"status": "Lead",
"created_at": "2022-04-15T12:45:56Z",
"account_executive": "Annie Ibarra",
"revenue_ytd": 100000
}
]
}
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<body>
<div>
<h1>Hello my awesome CRM!</h1>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="dist/bundle.js"></script>
</div>
</body>
</html>
Loading

0 comments on commit 93f0e8b

Please sign in to comment.