Support for Django
Along with python support please add Django and Flask project templates.
- 
      Matthew Harris commented while they don't directly provide support for django, in case anyone is reading this in 2025, I've been using django on idx / firebase studio for years now without issue. My dev.nix: { pkgs, ... }: { 
 channel = "unstable";packages = [ 
 pkgs.python313
 pkgs.python313Packages.pip
 pkgs.uv
 ];# Sets environment variables in the workspace 
 env = {};
 idx = {
 extensions = [
 "ms-python.python"
 "ms-python.debugpy"
 ];# Enable previews 
 previews = {
 enable = true;
 previews = {
 };
 };# Workspace lifecycle hooks 
 workspace = {
 # Runs when a workspace is first created
 onCreate = {
 uv-install = "uv venv && uv sync";
 };
 # Runs when the workspace is (re)started
 onStart = {
 start-dj = "./devserver.sh";
 };
 };
 };
 }
- 
      NourEldin Osama commented IDX now supports Django and Flask project templates 
- 
      Jason Meikle commented Django would be an excellent add 
- 
      Trần Phước Hùng commented yes it would be great if django could be supported 
- 
      Juan Carlos Andrade Esperanza commented Please add this Template from django. 
- 
      Adhiraj S commented @Kirupa Yes I saw that you guys added Flask but still try to add Django also or just a simple python environment where we can install whatever django package and modules. 
- 
      Hi Adhiraj - we have Python Flask coming soon. Django is an interesting one that we'll track closely :-) 
