Skip to content

Commit eac5ea5

Browse files
authored
Update README.md
1 parent 687000c commit eac5ea5

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,29 @@
22

33
<p id="description">Using Laravel Queue and Jobs for Email delivery with Gmail SMTP Server</p>
44

5-
<h2>🛠️ Installation Steps:</h2>
5+
## Installation
66

7-
<p>1. Clone</p>
7+
First clone this repository, install the dependencies, and setup your .env file.
88

99
```
10-
git clone https://github.com/ardirannu/laravel-queue-email.git
10+
git clone https://github.com/ardirannu/laravel-queue-email.git laravel-queue-email
11+
composer install
12+
cp .env.example .env
13+
```
14+
15+
Then create the necessary database.
16+
17+
```
18+
php artisan db
19+
create database email-queue
20+
```
21+
22+
And run the initial migrations and seeders.
23+
24+
```
25+
php artisan migrate --seed
1126
```
1227

13-
1428

1529
<h2>💻 Built with</h2>
1630

0 commit comments

Comments
 (0)