Welcome to TWIL, your weekly dose of micro-learning from the tech trenches at Cuttlesoft! In this post, Frank untangles the intricacies of setting up Multiple Configs for the VS Code Debugger, essential for efficiently managing complex project components like Django and Celery in your development environment. Discover Frank's tips for the ideal VSCode setup, allowing you to simultaneously debug different processes with ease—a true game-changer for developers looking for a streamlined workflow. Dive into this week's learning and elevate your debugging skills with precision!

Define Multiple Configs for VS Code Debugger

Define multiple process configs in launch.json so you can debug several components of a project's stack (e.g. django and celery)

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "[django] runserver",
      "type": "python",
      "request": "launch",
      "program": "${workspaceFolder}/manage.py",
      "args": ["runserver"],
      "django": true,
      "justMyCode": false
    },
    {
      "name": "[celery] worker",
      "type": "python",
      "request": "launch",
      "module": "celery",
      "console": "integratedTerminal",
      "args": ["-A", "myapp", "worker", "-l", "debug", "-E"]
    }
  ]
}

Note the [celery] worker defines a process to run in the VS Code terminal which makes it a better stating place for arbitrary shell commands.

  • VS Code
Frank Valcarcel's profile picture
Frank Valcarcel

Cofounder, Director of Operations

Related Posts

AWS logo centered over dark blue stylized map of Europe with concentric radar-style rings emanating from Germany, representing the AWS European Sovereign Cloud infrastructure launch for EU data sovereignty and GDPR compliance
January 26, 2026 • Frank Valcarcel

AWS Launches European Sovereign Cloud

AWS launched a physically separate cloud infrastructure in Europe with EU-only governance, zero US dependencies, and over 90 services. Here is what organizations in healthcare, finance, and government need to know about the sovereign cloud and how to evaluate it for their compliance strategy.

Blueprint-style architecture diagram of an AI agent framework showing the core orchestration loop of observe, think, act, and repeat, with components for planning, state management, LLM reasoning, tool execution, and persistent memory connected by directional data flows on a dark grid background.
March 27, 2025 • Frank Valcarcel

A Practical Guide to Agent Orchestration Frameworks

There are at least a dozen frameworks competing to be the foundation for your agent architecture. This post breaks down how each one thinks about the problem, where it shines, and where it will cost you time. We are not ranking them. The right choice depends on your use case.

Let's work together

Tell us about your project and how Cuttlesoft can help. Schedule a consultation with one of our experts today.

Contact Us