File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,13 @@ A powerful and opinionated FilamentPHP starter kit designed to accelerate your a
7878 cp .env.example .env
7979 ```
8080
81- 5. Configure your database in .env
81+ 5. Generate App Key
82+
83+ ```php
84+ php artisan key:generate
85+ ```
86+
87+ 6. Configure your database in .env
8288
8389 ```php
8490 DB_CONNECTION=mysql
@@ -89,7 +95,7 @@ A powerful and opinionated FilamentPHP starter kit designed to accelerate your a
8995 DB_PASSWORD=
9096 ```
9197
92- 6 . Configure your google sign in cliend id and secret (optional)
98+ 7 . Configure your google sign in cliend id and secret (optional)
9399
94100 ```php
95101 #google auth
@@ -98,7 +104,7 @@ A powerful and opinionated FilamentPHP starter kit designed to accelerate your a
98104 GOOGLE_REDIRECT_URI=http://localhost:8000/admin/oauth/callback/google
99105 ```
100106
101- 7 . Configure your resend for email sending (optional)
107+ 8 . Configure your resend for email sending (optional)
102108
103109 ```php
104110 #resend
@@ -113,13 +119,13 @@ A powerful and opinionated FilamentPHP starter kit designed to accelerate your a
113119 MAIL_FROM_NAME="${APP_NAME}"
114120 ```
115121
116- 8 . Migrate your database
122+ 9 . Migrate your database
117123
118124 ```php
119125 php artisan migrate --seed
120126 ```
121127
122- 9 . Serve the Application
128+ 10 . Serve the Application
123129
124130 ```script
125131 composer run dev
You can’t perform that action at this time.
0 commit comments