Created
September 17, 2015 08:45
-
-
Save sorenmalling/82769c3dfe838740ff93 to your computer and use it in GitHub Desktop.
Installing TYPO3 CMS 7.4 with composer and typo3_console
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "vendor/sitename", | |
"require": { | |
"typo3/cms": "^7.4", | |
"helhum/typo3-console": "^1.2" | |
}, | |
"authors": [ | |
{ | |
"name": "Soren Malling", | |
"email": "[email protected]" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment