stingo / buildkit
Stingo Buildkit: A custom Drupal starter kit with site install profile and configurations.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:project
Requires
- asset/bootstrap: 5.3.3
- asset/bootstrap-icons: 1.11.3
- composer/installers: ^2.0
- drupal/admin_toolbar: ^3.6
- drupal/block_class: ^4.0
- drupal/block_content_permissions: ^1.11
- drupal/bootstrap5: ^4.0
- drupal/bootstrap_layout_builder: ^2.2
- drupal/bpmn_io: ^2.0
- drupal/captcha: ^2.0
- drupal/ckeditor5_plugin_pack: ^1.4
- drupal/conditional_fields: ^4.0@alpha
- drupal/core-composer-scaffold: ^10.5
- drupal/core-project-message: ^10.5
- drupal/core-recommended: ^10.5
- drupal/core-vendor-hardening: ^10.5
- drupal/css_editor: ^2.0
- drupal/easy_email: ^3.0
- drupal/eca: ^2.1
- drupal/events_log_track: ^4.0
- drupal/field_group: ^4.0
- drupal/field_permissions: ^1.4
- drupal/filefield_paths: ^1.0@beta
- drupal/gin: ^4.1
- drupal/imce: ^3.1
- drupal/layout_options: ^1.7
- drupal/media_directories: ^2.2@beta
- drupal/paragraphs: ^1.19
- drupal/seckit: ^2.0
- drupal/security_review: ^3.1
- drupal/symfony_mailer: ^1.6
- drupal/twig_debugger: ^1.1
- drupal/twig_ui: ^2.1
- drupal/ui_patterns: ^2.0
- drupal/ui_styles: ^1.16
- drupal/ui_suite_bootstrap: ^5.1@alpha
- drupal/views_bulk_operations: ^4.3
- drupal/views_field_permissions: ^2.0@alpha
- drush/drush: ^13.6
Conflicts
This package is not auto-updated.
Last update: 2025-08-05 12:16:35 UTC
README
Stingo Buildkit is a custom Drupal 10.5.1 starter kit with a powerful set of modules and themes to accelerate the development of modern, secure, and flexible Drupal websites. It is built on top of Drupal's core, leveraging best practices and essential site-building tools out of the box.
📦 Included Modules
This buildkit comes pre-installed with the following modules:
admin_toolbar
block_class
block_content_permissions
bootstrap_layout_builder
bootstrap_styles
bpmn_io
captcha
ckeditor5_plugin_pack
ckeditor5_premium_features
conditional_fields
css_editor
easy_email
eca
embed
entity_browser
entity_embed
entity_reference_revisions
events_log_track
field_group
field_permissions
filefield_paths
gin_toolbar
imce
jquery_ui
jquery_ui_resizable
layout_options
media_directories
media_library_form_element
paragraphs
seckit
security_review
symfony_mailer
token
twig_debugger
twig_ui
ui_patterns
ui_styles
views_bulk_operations
views_field_permissions
🎨 Included Themes
bootstrap5
– Responsive front-end theme using Bootstrap 5gin
– Clean, modern administration themeui_suite_bootstrap
– Component-driven theming with UI Suite integration
🛠️ Installation Guide
✅ Step 1: Create a New Project
composer create-project stingo/buildkit my_project
cd my_project
🛢️ Step 2: Create a MySQL Database
mysql -u root -p
Then run these commands inside the MySQL prompt:
CREATE DATABASE stingo_buildkit CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; GRANT ALL PRIVILEGES ON stingo_buildkit.* TO 'root'@'localhost' IDENTIFIED BY 'your_db_password'; FLUSH PRIVILEGES; EXIT;
🔐 Replace
'your_db_password'
with your actual MySQL password.
⚙️ Step 3: Install the Site via Drush
drush si stingo_buildkit \
--site-name="Stingo Site" \
--account-name=admin \
--account-pass=admin123 \
--account-mail=admin@example.com
Replace
your_db_password
with your actual MySQL root password.