File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 41
41
$ composer update
42
42
```
43
43
44
- ** 3 -** Generate a new application key for your app
44
+ ** 4 -** Generate a new application key for your app
45
45
46
46
``` bash
47
47
$ php artisan key:generate
48
48
```
49
49
50
- ** 4 -** Edit the .env file and add / update your local database credentials in the .env file
50
+ ** 5 -** Edit the .env file and add / update your local database credentials in the .env file
51
51
52
52
```
53
53
DB_CONNECTION=mysql
@@ -59,40 +59,41 @@ DB_PASSWORD=secret
59
59
60
60
```
61
61
62
- ** 5 -** Run the database migration and seeders
62
+ ** 6 -** Run the database migration and seeders
63
63
64
64
``` bash
65
65
$ php artisan migrate --seed
66
66
67
67
```
68
68
69
- ** 6 -** Create a symbolink link to your public storage
69
+ ** 7 -** Create a symbolink link to your public storage
70
70
71
71
``` bash
72
72
$ php artisan storage:link
73
73
74
74
```
75
75
76
- ** 7 -** Run npm to install additional dependencies
76
+ ** 8 -** Run npm to install additional dependencies
77
77
78
78
``` bash
79
79
$ npm install
80
80
```
81
81
82
82
83
- ** 8 -** Run npm to compile the Js and CSS resources
83
+ ** 9 -** Run npm to compile the Js and CSS resources
84
84
85
85
``` bash
86
86
$ npm run dev
87
87
```
88
88
89
- ** 9 -** Launch the app
89
+ ** 10 -** Launch the app
90
90
91
91
``` bash
92
92
$ php artisan serve
93
93
```
94
94
95
- ** 10-** Go to http://localhost:8000/ and voila
95
+ ** 11-** Go to http://localhost:8000/ and Voilà !!!
96
+
96
97
97
98
## What are we demonstrating here?
98
99
You can’t perform that action at this time.
0 commit comments