Skip to content

Commit

Permalink
Finalized code for customers table; updated readme; added some commen…
Browse files Browse the repository at this point in the history
…ts in the code; added styling
  • Loading branch information
Dmitrii Belousov committed Apr 28, 2022
1 parent 93f0e8b commit 8f43e5d
Show file tree
Hide file tree
Showing 10 changed files with 1,996 additions and 34 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
### How to get started?

1. Run
```
1. Install dependencies frontend app needs to run. Run:
```bash
npm install
```

Note that you might need sudo permissions for that.

2. Run
2. Start backend. Run:
```bash
npm run start-json-server
```

4. Start frontend. Run:
```bash
npm run start
```
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Awesome CRM</title>
<title>Customers</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<h1>Hello my awesome CRM!</h1>
<h1>My Customers</h1>
<script type="text/javascript" src="dist/bundle.js"></script>
</div>
</body>
Expand Down
Loading

0 comments on commit 8f43e5d

Please sign in to comment.