Skip to content

Commit

Permalink
idx babyyyyyyyyyyyyy
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Bamboo-Forest committed Mar 10, 2024
1 parent 747e7a4 commit 5f12e14
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .idx/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

gc/
32 changes: 32 additions & 0 deletions .idx/dev.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# To learn more about how to use Nix to configure your environment
# see: https://developers.google.com/idx/guides/customize-idx-env
{ pkgs, ... }: {
channel = "stable-23.11"; # "stable-23.11" or "unstable"
# Use https://search.nixos.org/packages to find packages
packages = [
pkgs.nodejs
pkgs.nodePackages.firebase-tools
pkgs.python3
];
# Sets environment variables in the workspace
env = { };
# search for the extension on https://open-vsx.org/ and use "publisher.id"
idx.extensions = [
# "vscodevim.vim"
];
# preview configuration
idx.previews = {
enable = true;
previews = [
{
command = ["python3" "-m" "http.server" "$PORT" "--bind" "0.0.0.0"];
manager = "web";
id = "web";
}
{
manager = "ios";
id = "ios";
}
];
};
}

0 comments on commit 5f12e14

Please sign in to comment.