From 639cd5715f0c6570fce1a554346f4cc7f1965c4b Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Sun, 22 Mar 2026 15:37:08 +0800 Subject: [PATCH] Remove IDX config file --- .idx/dev.nix | 49 ------------------------------------------------- README.md | 7 ------- 2 files changed, 56 deletions(-) delete mode 100644 .idx/dev.nix diff --git a/.idx/dev.nix b/.idx/dev.nix deleted file mode 100644 index 45c6fa715f1..00000000000 --- a/.idx/dev.nix +++ /dev/null @@ -1,49 +0,0 @@ -# To learn more about how to use Nix to configure your environment -# see: https://developers.google.com/idx/guides/customize-idx-env -{ pkgs, ... }: { - # Which nixpkgs channel to use. - channel = "stable-25.05"; # or "unstable" - - # Use https://search.nixos.org/packages to find packages - packages = [ - # Node is included for deploying to Firebase. - pkgs.nodejs_24 - ]; - - # Sets environment variables in the workspace - env = {}; - idx = { - # Search for the extensions you want on https://open-vsx.org/ and use "publisher.id" - extensions = [ - "Dart-Code.flutter" - "Dart-Code.dart-code" - ]; - - # Enable previews - previews = { - enable = true; - previews = { - web = { - command = ["dart" "run" "dash_site" "serve"]; - manager = "web"; - env = { - # Environment variables to set for your server - PORT = "$PORT"; - }; - }; - }; - }; - - # Workspace lifecycle hooks - workspace = { - # Runs when a workspace is first created - onCreate = { - dart-pub-get = "dart pub get"; - }; - # Runs when the workspace is (re)started - onStart = { - dart-pub-get = "dart pub get"; - }; - }; - }; -} diff --git a/README.md b/README.md index 798d6326788..99fde5fd93e 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,6 @@ built with [Jaspr][] and hosted on [Firebase][]. [Flutter]: https://docs.flutter.dev/ [Repo on GitHub Actions]: https://github.com/flutter/website/actions?query=workflow%3Abuild+branch%3Amain - - Open in Firebase Studio - - ## Issues, bugs, and requests We welcome contributions and feedback on our website.