Skip to content

Commit 5104c19

Browse files
committed
Update readme
1 parent f7e0e60 commit 5104c19

File tree

1 file changed

+7
-17
lines changed

1 file changed

+7
-17
lines changed

README.md

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ composer install
2020
Install NPM dependencies:
2121

2222
```sh
23-
npm ci
23+
npm install
2424
```
2525

2626
Build assets:
@@ -32,37 +32,27 @@ npm run dev
3232
Setup configuration:
3333

3434
```sh
35-
cp .env.example .env
35+
cp config/.env.example config/.env
3636
```
3737

38-
Generate application key:
39-
40-
```sh
41-
php artisan key:generate
42-
```
43-
44-
Create an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.
45-
46-
```sh
47-
touch database/database.sqlite
48-
```
38+
Create an database of your choice, and simply update your configuration accordingly.
4939

5040
Run database migrations:
5141

5242
```sh
53-
php artisan migrate
43+
bin/cake migrations migrate
5444
```
5545

5646
Run database seeder:
5747

5848
```sh
59-
php artisan db:seed
49+
bin/cake migrations seed --seed=DatabaseSeed
6050
```
6151

6252
Run the dev server (the output will give the address):
6353

6454
```sh
65-
php artisan serve
55+
bin/cake server
6656
```
6757

6858
You're ready to go! Visit Ping CRM in your browser, and login with:
@@ -72,7 +62,7 @@ You're ready to go! Visit Ping CRM in your browser, and login with:
7262

7363
## Running tests
7464

75-
To run the Ping CRM tests, run:
65+
To run the CakePHP PingCRM tests, run:
7666

7767
```
7868
phpunit

0 commit comments

Comments
 (0)