Skip to content

feat(cli): Docker-based dev environment#2286

Open
Soner (shyim) wants to merge 36 commits into
mainfrom
feat/cli-dev-environment-docs
Open

feat(cli): Docker-based dev environment#2286
Soner (shyim) wants to merge 36 commits into
mainfrom
feat/cli-dev-environment-docs

Conversation

@shyim

Copy link
Copy Markdown
Member

Summary

Documents the new development environment introduced in (next branch), which adds a fully integrated Docker-based development environment with an interactive terminal dashboard.

Changes

  • New: products/cli/project-commands/dev-environment.md — comprehensive guide covering project dev, dev start/dev stop, project logs, the DevTUI dashboard, setup wizard, Docker services, environment executors, configuration reference, and troubleshooting
  • Updated: products/cli/project-commands/helper-commands.md — added Development Environment section
  • Updated: guides/development/start-developing.md — added "Using the Development Environment" section
  • Updated: products/cli/index.md — added dev environment to feature list

Add comprehensive documentation for the new Manage your Shopware Project

Usage:
  shopware-cli project [command]

Available Commands:
  admin-api        pre authenticated curl interface to the Admin API
  admin-build      Builds the Administration
  admin-watch      Starts the Shopware Admin Watcher
  autofix          Autofix a project
  ci               Build Shopware in the CI
  clear-cache      Clears the Shop cache
  config           Manage the project config
  console          Runs the Symfony Console (bin/console) for current project
  create           Create a new Shopware 6 project
  doctor           Check your Shopware project for potential problems
  dump             Dumps the Shopware database
  extension        Manage the extensions of the Shopware shop
  fix              Fix project
  format           Format project
  generate-jwt     Generate a new JWT secret key
  image-proxy      Start a proxy server for serving images from the public folder
  storefront-build Builds the Storefront
  storefront-watch Starts the Shopware Storefront Watcher
  upgrade-check    Check that installed extensions are compatible with a future Shopware version
  validate         Validate project
  worker           Run multiple Symfony worker in background.

Flags:
  -h, --help                    help for project
      --project-config string   Path to config (default ".shopware-project.yml")

Global Flags:
  -n, --no-interaction   do not ask any interactive questions
      --verbose          show debug output

Use "shopware-cli project [command] --help" for more information about a command.
development environment introduced in shopware-cli. Covers:

- Interactive DevTUI dashboard with General, Logs, and Config tabs
- Background start/stop via  and  subcommands
- Setup wizard for projects migrating to dev mode
-  command for viewing application logs
- Auto-generated compose.yaml with services, port mappings, and
  auto-detection of queue/search dependencies
- Environment executor abstraction (docker, local, symfony-cli)
- Configuration reference for .shopware-project.yml and local overrides
- Troubleshooting guide

Also updates the start-developing guide, CLI index, and helper
commands page to reference the new development environment.
…e.yaml

Add a dedicated section explaining that compose.yaml is fully managed
by the CLI and will be regenerated, with practical compose.override.yaml
examples for common customization use cases (extra env vars, ports,
volumes, additional services). Strengthen the troubleshooting entry
and config reference section with the same guidance.
The development environment documentation now lives in the main
development guide as the primary workflow for developers:

- New guides/development/dev-environment.md — comprehensive guide
  covering DevTUI dashboard, setup wizard, compose.override.yaml
  pattern, log streaming, configuration reference, troubleshooting
- Restructured guides/development/start-developing.md — leads with
  the dev environment; old make shell workflow moved to legacy note
- Updated guides/development/index.md — dev environment in workflow
  and tooling sections
- Updated guides/installation/index.md — replaced make up/setup
  instructions with shopware-cli project dev as the way to start
- Updated guides/installation/project-overview.md — mentions dev
  environment as standard interaction method
- Updated guides/development/tooling/index.md — added dev environment
- Slimmed products/cli/project-commands/dev-environment.md to a
  CLI command reference pointing to the main guide
- Updated helper-commands.md to cross-reference the main guide
- Added DevTUI, LavinMQ, lavinmq, adminer, keypress, overridable,
  runnable, xdebug to .wordlist.txt
- Fixed markdown linting: blank lines before code blocks and lists
Replace the brief 'Setup Wizard' section with a comprehensive
'Migrating from Legacy Setups' guide that explains:

- What triggers the wizard (compatibility date before 2026-03-01)
- Step-by-step walkthrough of each wizard screen
- What files are created, updated, or replaced (with a table)
- What happens to existing compose.yaml and Makefile
- Post-migration steps (composer install if needed, moving
  customizations to compose.override.yaml)
@shyim Soner (shyim) force-pushed the feat/cli-dev-environment-docs branch from 692d787 to 4ab0c30 Compare June 30, 2026 09:52
@shopware-dev-docs-connector

shopware-dev-docs-connector Bot commented Jun 30, 2026

Copy link
Copy Markdown

Developer Docs healthcheck

Status: Completed with success.
Repository: shopware/docs
Commit: 9ee3f3b
Preview: https://developer-documentation-myzhnpi0h-shopware-frontends.vercel.app
Workflow run: #4450

@lasomethingsomething somethings (lasomethingsomething) changed the title feat(cli): document new Docker-based development environment feat(cli): older draft for Docker-based dev environment (still includes useful info) Jul 7, 2026
…changes

Updates to cli docs to current state
@shyim Soner (shyim) marked this pull request as ready for review July 8, 2026 07:51
Copilot AI review requested due to automatic review settings July 8, 2026 07:51
@lasomethingsomething somethings (lasomethingsomething) changed the title feat(cli): older draft for Docker-based dev environment (still includes useful info) feat(cli): Docker-based dev environment Jul 8, 2026

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds documentation for the new Shopware CLI Docker-based Development Environment (DevTUI) and integrates it into the existing installation/development/CLI docs, including a CLI reference page and spellcheck wordlist updates.

Changes:

  • Introduces a comprehensive Development Environment guide (shopware-cli project dev, DevTUI, services, config, migration, troubleshooting).
  • Adds a CLI reference page for project dev / project logs, plus cross-links from CLI helper docs and development tooling indexes.
  • Updates installation and “start developing” docs to prefer the DevTUI workflow over legacy make-based flows; extends spellcheck wordlist for new terms.

Reviewed changes

Copilot reviewed 10 out of 10 changed files in this pull request and generated 5 comments.

Show a summary per file
File Description
products/tools/cli/project-commands/helper-commands.md Adds a Development Environment section and fixes wording/indentation in existing CLI helper docs.
products/tools/cli/project-commands/dev-environment.md New CLI reference page for project dev and project logs, linking to the full guide.
products/tools/cli/index.md Adds the dev environment to the CLI feature list.
guides/installation/project-overview.md Updates “Development tooling” to recommend DevTUI; adjusts examples/wording in tables.
guides/installation/index.md Replaces legacy “finish Docker setup” section with DevTUI-first startup instructions and links.
guides/development/tooling/index.md Adds Development Environment to the official tooling list and cleans up formatting.
guides/development/start-developing.md Reorients the guide around the DevTUI workflow (console, watchers, customization, legacy note).
guides/development/index.md Updates the typical development workflow and tooling section to link Dev Environment + Start Developing.
guides/development/dev-environment.md New detailed Development Environment guide, including migration and configuration reference.
.wordlist.txt Adds new accepted terms (e.g., DevTUI, LavinMQ, xdebug).

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread guides/installation/project-overview.md Outdated
Comment thread guides/installation/project-overview.md
Comment thread guides/installation/project-overview.md
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/dev-environment.md
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/dev-environment.md Outdated
Comment thread products/tools/cli/project-commands/helper-commands.md Outdated
Comment thread products/tools/cli/project-commands/helper-commands.md Outdated
Comment thread .wordlist.txt
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/dev-environment.md Outdated
Co-authored-by: somethings <l.apple@shopware.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/dev-environment.md Outdated
Comment thread guides/development/index.md Outdated
Comment thread guides/installation/index.md Outdated
Comment thread guides/installation/project-overview.md Outdated

@sushmangupta Su (sushmangupta) left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the PR Soner (@shyim) :)

Comment thread guides/development/dev-environment.md Outdated

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants