- Issue created by @luke.leber
- πΊπΈUnited States luke.leber Pennsylvania
Manually visiting
/xb/node/1
following step #7 is a winner though (fyi)! - π¬π§United Kingdom longwave UK
Wondering if we can make things even easier by assuming contributors will use ddev and @traviscarden's add-on, which makes installation even easier: https://github.com/TravisCarden/ddev-drupal-xb-dev?tab=readme-ov-file#in...
- πΊπΈUnited States luke.leber Pennsylvania
Updated I.S. the xb link in toolbar works on HEAD now.
- πΉπΌTaiwan johnalbin Taipei, Taiwan
Since this is the contributing doc, shouldn't we be doing a git clone of the experience_builder source during setup?
composer require --prefer-source drupal/experience_builder
The will add eb to the composer.json file and do a git clone all in one step. HOWEVER, the git clone will be checkout out to the latest release tag and not the needed development branch. So we'd need to add this line after:
cd modules/contrib/experience_builder; git checkout 0.x
- πΉπΌTaiwan johnalbin Taipei, Taiwan
Do we want to mention `nvm use` before the `npm install` command? That's definitely an optional step though, I'd bet it still builds on newer node.js versions.
- πΊπΈUnited States tedbow Ithaca, NY, USA
FYI π CONTRIBUTING.MD is nearly impossible to follow without insider drupal knowledge Active . I am not following either of these but so not sure if they are dealing with the same sections of the file
- πΊπΈUnited States shrop
Related to #6 π Missing steps in CONTRIBUTING.md Active , it slightly confused me when I was following instrucitons in CONTRIBUTING.md and I didn't clone experience builder. Given that, I think right before line 3 in the descriptions we should have either:
3. composer require --prefer-source drupal/experience_builder
4. cd modules/contrib/experience_builder; git checkout 0.xor
3. mkdir -p modules/custom & git clone git@git.drupal.org:project/experience_builder.git modules/custom
Basically need to cover getting a git checkout of Experience Builder in the docs.
- First commit to issue fork.
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
FYI: π CONTRIBUTING.MD is nearly impossible to follow without insider drupal knowledge Active was also done by @luke.leber, who opened this issue π So most of the concerns reported here have already been addressed there.
@longwave in #4: DDEV instructions were added in π Clarify commands in CONTRIBUTING.md, and provide XB DDEV add-on alternate commands Fixed
Will implement @shrop's suggestion!
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
I manually ran through these steps locally twice, in a fresh environment, starting from
/tmp
.I believe @luke.leber's original request:
Just more copy/pastable instructions!
is now finally met :)
(The only assumption left, that is not stated explicitly: run a web server. I think that's reasonable.)
-
wim leers β
committed 1e642f69 on 0.x
Issue #3492105 by wim leers, luke.leber, johnalbin, tedbow, shrop,...
-
wim leers β
committed 1e642f69 on 0.x
- πΊπΈUnited States galactus86
Hello all.
I struggled getting Drupal and XB running and it took several attempts so I thought I'd share my exact sequence.
I am using DDEV (
vendor/bin/drush
just wouldn't work for me)git clone https://git.drupalcode.org/project/drupal.git
cd drupal
ddev config
ddev start
( now had a vanilla Drupal site running but not configured )git clone git@git.drupal.org:project/experience_builder.git modules/contrib/experience_builder
composer require drush/drush
ddev drush si standard
- working site core: 11.2-dev
- ---
$settings['extension_discovery_scan_tests'] = TRUE;
added to end of default/settings.phpddev restart
git clone git@git.drupal.org:project/experience_builder.git modules/contrib/experience_builder
ddev drush pm:install experience_builder xb_dev_standard
cd modules/contrib/experience_builder/ui
npm install && npm run build
From there I was able to create an article and use XB.
I did attempt to add experience_builder to
composer.json
but could not resolve the requirements. And when usingcomposer require --prefer-source drupal/experience_builder
instead of cloning, the module was missing xb_dev_standard so would not install. - Status changed to Fixed
about 2 months ago 5:39pm 9 February 2025 Automatically closed - issue fixed for 2 weeks with no activity.