forked from developer-job-simulation/javascript-crm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stubbed dependencies: webpack, json-server; stubbed html table progra…
…mmatically; added Readme
- Loading branch information
Dmitrii Belousov
committed
Apr 27, 2022
1 parent
0e8f3a4
commit 93f0e8b
Showing
9 changed files
with
7,353 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.