Skip to content

Commit 294169f

Browse files
committed
Read Me
1 parent adcada2 commit 294169f

File tree

2 files changed

+81
-2
lines changed

2 files changed

+81
-2
lines changed

README.md

Lines changed: 81 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,85 @@
1-
# CRM
1+
# Ping CRM
22

3+
A demo application to illustrate how Inertia.js works.
4+
5+
![](https://raw.githubusercontent.com/mohsin-shaikh/crm/master/zuupee-crm.png)
6+
7+
## Installation
8+
9+
Clone the repo locally:
10+
11+
```sh
12+
git clone https://github.com/mohsin-shaikh/crm.git crm
13+
cd crm
14+
```
15+
16+
Install PHP dependencies:
17+
18+
```sh
19+
composer install
20+
```
21+
22+
Install NPM dependencies:
23+
24+
```sh
25+
npm install
26+
```
27+
28+
Build assets:
29+
30+
```sh
31+
npm run dev
32+
```
33+
34+
Setup configuration:
35+
36+
```sh
37+
cp .env.example .env
38+
```
39+
40+
Generate application key:
41+
42+
```sh
43+
php artisan key:generate
44+
```
45+
46+
Create an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.
47+
48+
```sh
49+
touch database/database.sqlite
50+
```
51+
52+
Run database migrations:
53+
54+
```sh
55+
php artisan migrate
56+
```
57+
58+
Run database seeder:
59+
60+
```sh
61+
php artisan db:seed
62+
```
63+
64+
Run the dev server (the output will give the address):
65+
66+
```sh
67+
php artisan serve
68+
```
69+
70+
You're ready to go! Visit Ping CRM in your browser, and login with:
71+
72+
- **Username:** [email protected]
73+
- **Password:** secret
74+
75+
## Running tests
76+
77+
To run the Ping CRM tests, run:
78+
79+
```
80+
phpunit
81+
```
382

483
## License
584

6-
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
85+
The ZUUPEE CRM is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

zuupee-crm.png

173 KB
Loading

0 commit comments

Comments
 (0)