There was an error while loading. Please reload this page.
1 parent 687000c commit eac5ea5Copy full SHA for eac5ea5
README.md
@@ -2,15 +2,29 @@
2
3
<p id="description">Using Laravel Queue and Jobs for Email delivery with Gmail SMTP Server</p>
4
5
-<h2>🛠️ Installation Steps:</h2>
+## Installation
6
7
-<p>1. Clone</p>
+First clone this repository, install the dependencies, and setup your .env file.
8
9
```
10
-git clone https://github.com/ardirannu/laravel-queue-email.git
+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
26
27
-
28
29
<h2>💻 Built with</h2>
30
0 commit comments