Settings and activity
5 results found
-
2 votes
Matthew Harris shared this idea ·
-
3 votes
An error occurred while saving the comment -
50 votes
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";
};
};
};
} -
70 votes
Matthew Harris supported this idea ·
-
205 votes
This is something we are actively looking into!
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 ·
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.