diff --git a/.gitignore b/.gitignore index 5b16a3a9d..ae0b85df0 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,7 @@ node_modules .wireit dist .env -.idx/ +.idx .vscode __pycache__ *.pyc diff --git a/.idx/dev.nix b/.idx/dev.nix deleted file mode 100644 index d3c274adf..000000000 --- a/.idx/dev.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ pkgs, ... }: { - env = { - PORT = "4200"; - }; - -# Enable previews and customize configuration - idx.previews = { - enable = true; - previews = { - # The following object sets web previews - web = { - command = [ - "npm" - "start" - "--" - "orchestrator" - "--port" - "$PORT" - "--host" - "localhost" - ]; - manager = "web"; - cwd="samples/client/angular"; - # Optionally, specify a directory that contains your web app - # cwd = "app/client"; - }; - }; - }; -} \ No newline at end of file