From 52542f6b5922bc232cf57dcd4f4b1130db8a3fab Mon Sep 17 00:00:00 2001 From: Nick Yeoman Date: Fri, 9 Jun 2023 14:59:14 -0700 Subject: [PATCH] minor fixes --- Quick-Start.md | 80 ++++++++++++++++++++++++++------------------------ 1 file changed, 41 insertions(+), 39 deletions(-) diff --git a/Quick-Start.md b/Quick-Start.md index 5e548a7..be909ac 100644 --- a/Quick-Start.md +++ b/Quick-Start.md @@ -1,40 +1,42 @@ -## Getting Started, Quick Installation - -These are the quick start Joomla installation instructions. - -Make sure the projectName is set correctly, it's very important, because it's used for git, docker, mysql and joomla. - -```bash -# STEP 1 -# Clone the repo (change projectName to the name of your project) -git clone git@git.nickyeoman.com:nick/joomla.git projectName - -# STEP 2 -# Move into the dir -cd projectName - -# STEP 3 -# Setup your env file -mv env.sample .env -vi .env - -# STEP 4 -# Prepare your project for git -bash bin/new_project.sh - -# STEP 5 -# Run the containers to initialize -sudo bash bin/docker_up.sh - -# STEP 6 -# Joomla cli installer -sudo bash bin/setup_joomla_installer.sh - -# STEP 7 -# Manually set Site Meta Description in [Administrator](http://localhost:8000/administrator/index.php?option=com_config) - -# Step 8 -# Clean up and Config -sudo bash bin/finalize.sh - +## Getting Started, Quick Installation + +These are the quick start Joomla installation instructions. + +Make sure the projectName is set correctly, it's very important, because it's used for git, docker, mysql and joomla. + +```bash +# STEP 1 +# Clone the repo (change projectName to the name of your project) +# Context: I like to name my projects by domain, example: nickyeoman-com +git clone git@git.nickyeoman.com:nick/joomla.git projectName + +# STEP 2 +# Move into the dir +cd projectName + +# STEP 3 +# Setup your env file +cp env.sample .env +# edit your file with any text editor (I use vim) +vi .env + +# STEP 4 +# Prepare your project for git +bash bin/new_project.sh + +# STEP 5 +# Run the containers to initialize +sudo bash bin/docker_up.sh + +# STEP 6 +# Joomla cli installer +sudo bash bin/setup_joomla_installer.sh + +# STEP 7 +# Manually set Site Meta Description in [Administrator](http://localhost:8000/administrator/index.php?option=com_config) + +# Step 8 +# Clean up and Config +sudo bash bin/finalize.sh + ``` \ No newline at end of file