From dc38fc24e41c91173f76e002e754dbe41bd6857d Mon Sep 17 00:00:00 2001 From: Mohammed Elhaouari <9967336+elhaouari-mohammed@users.noreply.github.com> Date: Mon, 17 May 2021 09:49:28 +0100 Subject: [PATCH] fix a typo in readme file cp .env.example .env && php artisan key:generate --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e072d5d..bf94350 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ If you prefer a quick guide to get started with Deployer 7, I've added one for y - Update the `deploy.yaml` or `deploy.php` with your own server details. - Run `dep deploy` to deploy once. - Run `dep ssh` to connect to your server via SSH. -- Run `cp .env.example && php artisan key:generate` to initialize your `.env` file. +- Run `cp .env.example .env && php artisan key:generate` to initialize your `.env` file. - Run `vim .env` and update your production environment variables. - Exit your server — `exit`. - Run `dep deploy` once more now that your `.env` file is all set up.