This modules provides a way to store specific configuration values inside the database and enables back office users to modify them without a deployment.
composer require spryker-community/database-configuration- Activate the navigation on project level
- edit your
config/Zed/navigation.xmland add the entries from the modulesrc/SprykerCommunity/Zed/DatabaseConfiguration/Communication/navigation.xmlto the rootnavigation.xml - clear the cache for navigation
vendor/bin/console application:build-navigation-cachevendor/bin/console router:cache:warm-up
- edit your
- Setup our database structure
vendor/bin/console propel:installvendor/bin/console transfer:generate
- Configure Spryker Core Namespaces
Add the SprykerCommunity namespace to your Spryker configuration:
File: config/Shared/config_default.php
<?php
// Add SprykerCommunity to the core namespaces array
$config[KernelConstants::CORE_NAMESPACES] = [
'SprykerCommunity', // Add this line
'SprykerShop',
'SprykerEco',
'Spryker',
'SprykerSdk',
];