drutopia / drutopia_dev_template
Project template for development versions of Drupal 10 Drutopia projects.
Requires
- composer/installers: ^2
- cweagans/composer-patches: ^1.7
- drupal/admin_toolbar: dev-3.x
- drupal/bulma: dev-3.0.x
- drupal/bulma_components: dev-1.0.x
- drupal/component_schema: dev-1.0.x
- drupal/components: dev-3.x
- drupal/config_actions: ^1
- drupal/config_actions_provider: ^1
- drupal/config_distro: ^2
- drupal/config_perms: dev-2.x
- drupal/config_provider: dev-3.0.x as 2.x-dev
- drupal/config_snapshot: ^2
- drupal/config_sync: ^3
- drupal/config_update: ^2
- drupal/core-composer-scaffold: ^10
- drupal/core-recommended: ^10
- drupal/drutopia_action: 2.0.x-dev@dev
- drupal/drutopia_article: 2.0.x-dev@dev
- drupal/drutopia_blog: 2.0.x-dev@dev
- drupal/drutopia_campaign: 2.0.x-dev@dev
- drupal/drutopia_collection: 2.0.x-dev@dev
- drupal/drutopia_comment: 2.0.x-dev@dev
- drupal/drutopia_core: 2.0.x-dev@dev
- drupal/drutopia_event: 2.0.x-dev@dev
- drupal/drutopia_group: 2.0.x-dev@dev
- drupal/drutopia_landing_page: 2.0.x-dev@dev
- drupal/drutopia_microblog: 1.0.x-dev@dev
- drupal/drutopia_organization: 2.0.x-dev@dev
- drupal/drutopia_page: 2.0.x-dev@dev
- drupal/drutopia_paragraph_title: 1.0.x-dev
- drupal/drutopia_people: 2.0.x-dev@dev
- drupal/drutopia_related_content: 2.0.x-dev@dev
- drupal/drutopia_resource: 2.0.x-dev@dev
- drupal/drutopia_search: 2.0.x-dev@dev
- drupal/drutopia_seo: 2.0.x-dev@dev
- drupal/drutopia_site: 2.0.x-dev@dev
- drupal/drutopia_social: 2.0.x-dev@dev
- drupal/drutopia_storyline: 2.0.x-dev@dev
- drupal/drutopia_user: 2.0.x-dev@dev
- drupal/faqfield: ^7.1
- drupal/ief_complex_open: 1.0.x-dev@dev
- drupal/image_field_to_media: ^2.0
- drupal/media_library_media_modify: ^1.0@beta
- drupal/minimalhtml: dev-2.0.x
- drupal/octavia: 2.0.x-dev@dev
- drupal/octavia_camouflage: 2.0.x-dev@dev
- drupal/paranoia: dev-1.x
- drupal/pathauto: 1.x-dev@dev
- drupal/similarterms: ^1
- drupal/skins: ^2
- drupal/subprofiles: dev-2.x
- drupal/yaml_content: dev-1.x
- drush/drush: ^11
- drutopia/drutopia: 2.0.x-dev
Requires (Dev)
- drupal/drutopia_dev: 2.0.x-dev@dev
- drupal/upgrade_status: ^4.0@alpha
Conflicts
This package is auto-updated.
Last update: 2024-10-15 01:25:22 UTC
README
This is a composer based installer for developers working on the Drutopia distribution.
Prerequisites
The development environment of your choice or simply PHP (7.2+ preferred) and Composer (preferably installed globally).
Installation of Drutopia for development
No need to download this project; Packagist will handle that for you.
composer create-project drutopia/drutopia_dev_template:dev-master --no-interaction --keep-vcs drutopia-dev-site
Composer will create a new directory called my-drutopia-dev-site (change to whatever name you would like). Inside you will find the web directory with the entire code base of Drutopia distribution. You should be able to install it like any other Drupal site.
To use PHP's built-in webserver and SQLite:
cd drutopia-dev-site/web
php -S localhost:8008
Then open localhost:8008 in your browser and follow Drupal's installation instructions, leaving database connection information at its default.
If at any point you want to delete your database so you can start development fresh with a new install you can rm web/sites/default/files/.ht.sqlite
.
Updating Drutopia for development
cd drutopia-dev-site
git pull
composer update
And likely deleting the database and starting fresh, or at least running drush updb
.