From ed81167f49886042b188f8905c6df429f87ee390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Wed, 17 Jul 2024 16:51:36 +0200 Subject: [PATCH] docs: update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8417c6f..c79b780 100644 --- a/README.md +++ b/README.md @@ -43,31 +43,31 @@ on [How to deploy a Symfony application](https://symfony.com/doc/current/deploym git clone https://github.com/maelgangloff/domain-watchdog.git ``` -1. Navigate to the project directory: +2. Navigate to the project directory: ```shell cd domain-watchdog ``` -1. Install dependencies: +3.Install dependencies: ```shell composer install ``` -1. Set up your environment variables: +4. Set up your environment variables: ```shell cp .env .env.local ``` -1. Run database migrations: +5. Run database migrations: ```shell php bin/console doctrine:migrations:migrate ``` -1. Start the Symfony server: +6. Start the Symfony server: ```shell symfony server:start