From 902198ab05cd5e6f90c2f9bdd389ca2266a30f30 Mon Sep 17 00:00:00 2001 From: tadaken3 Date: Sat, 8 Sep 2018 20:42:58 +0900 Subject: [PATCH] fix application path (#1781) * fix application path In the "env.sample" , "APP_CODE_PATH_HOST" was written. I fixed Documentation. --- DOCUMENTATION/content/getting-started/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DOCUMENTATION/content/getting-started/index.md b/DOCUMENTATION/content/getting-started/index.md index bca083e6..a067fa30 100644 --- a/DOCUMENTATION/content/getting-started/index.md +++ b/DOCUMENTATION/content/getting-started/index.md @@ -81,10 +81,10 @@ We'll need to do step 1 of the [Usage](#Usage) section now to make this happen. cp env-example .env ``` -At the top, change the `APPLICATION` variable to your project path. +At the top, change the `APP_CODE_PATH_HOST` variable to your project path. ``` -APPLICATION=../project-z/ +APP_CODE_PATH_HOST=../project-z/ ``` Make sure to replace `project-z` with your project folder name.