Skip to content

Settings and activity

5 results found

  1. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Matthew Harris shared this idea  · 
  2. 3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Matthew Harris commented  · 

    nothing is stopping you from doing full stack dev today with fb studio? while developing just use sqlite, then when it comes time for production, switch out to a larger db.

  3. 50 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    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";
    };
    };
    };
    }

  4. 70 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Matthew Harris supported this idea  · 
  5. 205 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Matthew Harris commented  · 

    right now we use repl.it when we want to collab, but we just copy/paste the critical functions into it. I'd love to be able to spin up the entire repo and jump on a call with my team and have us actively work the problem together!!

    Matthew Harris supported this idea  ·