-
Notifications
You must be signed in to change notification settings - Fork 18
Project Onboarding
Final product developed on the project consists of multiple repositories. New repositories may be added as needed. Different features may work with different set of repositories (not only branches). Due to this complexity, it's important to always make sure local development is started with correct set of branches. Possible ways to understand which branches to use:
- Ticket description. Each ticket should contain repositories and branches to work with. If this is not the case for the issue you get, please highlight this in the project Slack channel and/or on the stand up.
- .magento.env.yaml in the storefront-cloud-project. Find the branch that corresponds to your ticket (see the ticket or ask in the Slack channel).
- Slack channel. This would be the most up-to-date information, but it's easy to lose track of what was said in the channel, so use with caution.
There are multiple options to setup local development environment. Please read the following documents to understand main concepts and choose the option that works best for you.
Add parameter to dev/tests/api-functional/config/install-config-mysql.php.dist (notice that dashes used here)
'consumers-wait-for-messages' => '0',
Copy dev/tests/integration and dev/tests/api-functional from storefront (ce and ee repos) into dev/tests/integration and dev/tests/api-functional accordingly.
Or you can update env.php to set this setting to "0":
'queue' => [
'consumers_wait_for_messages' => 0,
....
]
Check how much RAM you dedicate to Docker and whether other Docker services are running. To be on safe side, it is recommended to dedicate 6 GB to docker when working with the project. This assumes no other services are running. If you run other Docker services, adjust accordingly.
This may be caused by conflicts with other Docker services running on your machine.
Check if you run any other services and whether they try to use same resources.
One of the common resource conflict is port allocation.
Use docker-compose.yml
as a reference for which ports are used by Magento DevBox and make sure they don't conflict with other running services.
- Home
- Onboarding
- Development:
- Project agreements
- Time Off Tracking List
- Design Documents:
- QA
- Demo
- Contacts