From 867c8787719865ccd5ebf606f7218b8fb85f2597 Mon Sep 17 00:00:00 2001 From: Tai Date: Tue, 13 Sep 2022 13:52:09 -0700 Subject: [PATCH] Update README.md --- easyappointments/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/easyappointments/README.md b/easyappointments/README.md index 868e1b0..9466fd2 100644 --- a/easyappointments/README.md +++ b/easyappointments/README.md @@ -11,16 +11,16 @@ The file structure here is slightly different from usual since we will be cloning a git repository to install this. Below are the steps needed to fully deploy easyappointments with our Caddy reverse proxy! -### 1. Clone repository and optionally check out the develop branch +### 1. Clone repository, navigate to repostitory directory, and optionally check out the develop branch ``` cd ~/docker/ git clone https://github.com/alextselegidis/easyappointments.git +cd easyappointments git checkout -b develop ``` -### 2. Navigate to cloned repository folder and copy composer.json and composer.lock to ./docker/server +### 2. Copy composer.json and composer.lock to ./docker/server ``` -cd easyappointments cp composer.lock docker/server cp composer.json docker/server ```