2017 © Pedro Peláez
 

project joomla-cli

Command-line script to manage joomla sites

image

picturae/joomla-cli

Command-line script to manage joomla sites

  • Thursday, July 12, 2018
  • by danielsmink
  • Repository
  • 25 Watchers
  • 2 Stars
  • 9,091 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 15 Versions
  • 6 % Grown

The README.md

Joomla cli

Latest Stable Version Build Status Code Climate, (*1)

Joomla-cli is a commandline tool to manage your Joomla websites., (*2)

For instance in our development / production environment we've build a Phing wrapper around it to deploy and install our Joomla! websites., (*3)

Install Joomla

``` bash vendor/bin/joomla-cli core:download --path=./public, (*4)


--path defaults to joomla, can be whatever relative to the directory the command is executed. --version defaults to latest stable e.g. 3.4.0, supports 3.3.* or exact version number. With the --stable flag you can also install unstable versions e.g. 3.4.1-rc ## Install DB ``` bash vendor/bin/joomla-cli core:install-db --dbname="mydb" --dbuser="myuser" --dbpass="mypassword" --dbhost="localhost" --joomla-version="3.4.0"

This command is used to install the initial clean Joomla! database., (*5)

Other options:, (*6)

--dbprefix to set the prefix for the Joomla! tables., (*7)

Database updates

``` bash vendor/bin/joomla-cli core:update-db --path=./public, (*8)


This command uses the path to bootstrap the Joomla application and run the database migrations (if they are needed). ## Install languages ``` bash vendor/bin/joomla-cli extension:language:install nl-NL --path=./public

This command uses the path to bootstrap the Joomla application and install the language., (*9)

Thanks to…

The Versions