File tree Expand file tree Collapse file tree 1 file changed +7
-17
lines changed
Expand file tree Collapse file tree 1 file changed +7
-17
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ composer install
2020Install NPM dependencies:
2121
2222``` sh
23- npm ci
23+ npm install
2424```
2525
2626Build assets:
@@ -32,37 +32,27 @@ npm run dev
3232Setup 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
5040Run database migrations:
5141
5242``` sh
53- php artisan migrate
43+ bin/cake migrations migrate
5444```
5545
5646Run database seeder:
5747
5848``` sh
59- php artisan db: seed
49+ bin/cake migrations seed --seed=DatabaseSeed
6050```
6151
6252Run the dev server (the output will give the address):
6353
6454``` sh
65- php artisan serve
55+ bin/cake server
6656```
6757
6858You'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```
7868phpunit
You can’t perform that action at this time.
0 commit comments