File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -22,36 +22,37 @@ This repository contains a starter template for setting up a web application usi
22
22
``` bash
23
23
git clone https://github.com/giauphan/laravel-vue-tailwind
24
24
```
25
- # Navigate into the project directory
25
+ ## Navigate into the project directory
26
26
```
27
27
cd laravel-vue-tailwind
28
28
```
29
- # Install PHP dependencies
29
+ ## Install PHP dependencies
30
30
```
31
31
composer install
32
32
```
33
- # Install JavaScript dependencies
33
+ ## Install JavaScript dependencies
34
34
```
35
35
npm install
36
36
```
37
- # Compile assets
37
+ ## Compile assets
38
38
```
39
39
npm run dev
40
40
```
41
- # Set up environment variables
41
+ ## Set up environment variables
42
42
43
- # Duplicate the `` .env.example file and rename it to .env. ``
44
- # Generate an application key
43
+ ## Duplicate the `` .env.example file and rename it to .env. ``
44
+
45
+ ## Generate an application key
45
46
```
46
47
php artisan key:generate
47
48
```
48
- # Configure your database connection in the .env file.
49
+ ## Configure your database connection in the .env file.
49
50
50
- # Run migrations (if using a database)
51
+ ## Run migrations (if using a database)
51
52
```
52
53
php artisan migrate
53
54
```
54
- # Start the development server
55
+ ## Start the development server
55
56
```
56
57
php artisan serve
57
58
```
You can’t perform that action at this time.
0 commit comments