minor fixes

Nick Yeoman 2023-06-09 14:59:14 -07:00
parent 831f70f530
commit 52542f6b59

@ -1,40 +1,42 @@
## Getting Started, Quick Installation ## Getting Started, Quick Installation
These are the quick start Joomla installation instructions. 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. Make sure the projectName is set correctly, it's very important, because it's used for git, docker, mysql and joomla.
```bash ```bash
# STEP 1 # STEP 1
# Clone the repo (change projectName to the name of your project) # Clone the repo (change projectName to the name of your project)
git clone git@git.nickyeoman.com:nick/joomla.git projectName # 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 # STEP 2
cd projectName # Move into the dir
cd projectName
# STEP 3
# Setup your env file # STEP 3
mv env.sample .env # Setup your env file
vi .env cp env.sample .env
# edit your file with any text editor (I use vim)
# STEP 4 vi .env
# Prepare your project for git
bash bin/new_project.sh # STEP 4
# Prepare your project for git
# STEP 5 bash bin/new_project.sh
# Run the containers to initialize
sudo bash bin/docker_up.sh # STEP 5
# Run the containers to initialize
# STEP 6 sudo bash bin/docker_up.sh
# Joomla cli installer
sudo bash bin/setup_joomla_installer.sh # STEP 6
# Joomla cli installer
# STEP 7 sudo bash bin/setup_joomla_installer.sh
# Manually set Site Meta Description in [Administrator](http://localhost:8000/administrator/index.php?option=com_config)
# STEP 7
# Step 8 # Manually set Site Meta Description in [Administrator](http://localhost:8000/administrator/index.php?option=com_config)
# Clean up and Config
sudo bash bin/finalize.sh # Step 8
# Clean up and Config
sudo bash bin/finalize.sh
``` ```