Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 1.02 KB

README.md

File metadata and controls

23 lines (12 loc) · 1.02 KB

Set up a local development environment based on DDEV

These instructions require that you have installed DDEV. Read how to install DDEV

  1. Quickstart your project by running composer create-project -s dev --remove-vcs t3kit/t3kit-starter [<directory>] [<version>]

  2. cd [project-dir] (e.g. cd t3kit-starter)

  3. Run composer ddev-config. Specify a project name or use the suggested project name. The other options should be correct, so keep the defaults.

  4. Run ddev start

  5. Run ddev composer install to install Composer dependencies.

  6. Run ddev exec npm install to install NPM dependencies.

  7. Run ddev exec npm run dev to build development assests for themes.

  8. Run ddev import-db --src=.localconf/db/dbdump/t3kit11.sql to import the database.

  9. Visit your site at the project URL. (e.g. https://t3kit-starter.ddev.site)

You can run ddev typo3 [COMMAND] and ddev typo3cms [COMMAND] to directly execute the TYPO3 CLI and helhum/typo3-console commands.