We just introduced a CLI version of setup and update, which may be useful for things like docker and fix broken updater via web ui.
Please note if you if you installed ITFlow in any other way instead of the script the --user=USERNAME option should be used and match the user of you web dir.
update_cli.php
$$
Usage: php update_cli.php [options]
Options:
--help Show this help message.
--update Perform a git pull to update the application.
--force_update Perform a git fetch and hard reset to origin/master.
--update_db Update the database structure to the latest version.
--user=USERNAME Run the git commands as USERNAME instead of www-data.
If no options are provided, a standard update (git pull) is performed.
$$
setup_cli.php
$$
ITFlow CLI Setup Script
Usage:
php setup_cli.php [options]
Options:
--host Database host (required)
--username Database username (required)
--password Database password (required)
--database Database name (required)
--base-url Base URL (without protocol, e.g. example.com/itflow) (required)
--locale Locale (e.g. en_US) (required)
--timezone Timezone (e.g. UTC) (required)
--currency Currency code (e.g. USD) (required)
--company-name Company name (required)
--country Company country (e.g. United States) (required)
--user-name Admin user full name (required)
--user-email Admin user email (required)
--user-password Admin user password (min 8 chars) (required)
--address Company address (optional)
--city Company city (optional)
--state Company state (optional)
--zip Company postal code (optional)
--phone Company phone (optional)
--company-email Company email (optional)
--website Company website (optional)
--non-interactive Run in non-interactive mode (fail if required args missing)
--help Show this help message
If running interactively (without --non-interactive), any missing required arguments will be prompted.
If running non-interactively, all required arguments must be provided.
$$