Skip to content

Instantly share code, notes, and snippets.

@tomasnorre
Forked from sorenmalling/commandline
Created October 6, 2015 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomasnorre/df26132f9f3e5b7aaaa5 to your computer and use it in GitHub Desktop.
Save tomasnorre/df26132f9f3e5b7aaaa5 to your computer and use it in GitHub Desktop.
Installing TYPO3 CMS 7.4 with composer and typo3_console
# Just read the help
soren@kevin  ~/Sites/typo3-hyttekort  ./typo3cms help install:setup
Alpha version of a setup command. Use with care and at your own risk!
COMMAND:
typo3_console:install:setup
USAGE:
/Users/soren/Sites/typo3-hyttekort/./typo3cms ./typo3cms install:setup [<options>]
OPTIONS:
--non-interactive
--database-user-name
--database-user-password
--database-host-name
--database-port
--database-socket
--database-name
--database-create
--admin-user-name
--admin-password
--site-name
# Run this!
soren@kevin  ~/Sites/typo3-hyttekort  ./typo3cms install:setup --non-interactive TRUE --database-user-name root --database-user-password password --database-host-name localhost --database-name typo3_hyttekort --database-create TRUE --admin-user-name admin --admin-password password --site-name "Composer and console installed"
Welcome to the console installer of TYPO3 CMS!
Check environment and create folder structure:
OK
Database connection details:
OK
Select a database name:
OK
Admin user and site name:
OK
Write default configuration:
OK
Successfully installed TYPO3 CMS!
# You are done
{
"name": "vendor/sitename",
"require": {
"typo3/cms": "^7.4",
"helhum/typo3-console": "^1.2"
},
"authors": [
{
"name": "Soren Malling",
"email": "soren.malling@gmail.com"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment