- Issue created by @grzegorz.bartman
Context:
Currently, Open Intranet uses a launch-intranet.sh
file to handle project setup and installation.
This approach was originally based on how Droopler and Drupal CMS 1.0 handled installation.
However, starting from Drupal CMS 1.1, the .sh
installer script was removed in favor of a simpler and more standard setup using ddev
commands.
Task:
We should analyze whether Open Intranet can also remove the launch-intranet.sh
script and update the documentation accordingly. The new installation steps would be:
git clone https://git.drupalcode.org/project/openintranet.git openintranet cd openintranet ddev config --project-type=drupal11 --docroot=web ddev start ddev composer install ddev launch
Current installation:
git clone https://git.drupalcode.org/project/openintranet.git openintranet cd openintranet ./launch-intranet.sh
Letβs investigate if switching to the standard ddev
approach is feasible and beneficial for developer experience and maintainability.
Active
1.0
Code