Skip to content

Commit

Permalink
clean up devenv (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
kvey committed Sep 26, 2023
1 parent 5c78fdc commit 7ebbeb2
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,17 @@
pkgs.curl
pkgs.git
pkgs.jq
pkgs.kubectl
pkgs.protobuf
pkgs.pulumi
pkgs.awscli2
pkgs.protobuf3_21
pkgs.kubernetes-helm
pkgs.flyway
pkgs.argo-rollouts
pkgs.argocd
pkgs.nodejs_20
pkgs.tilt
pkgs.aws-sam-cli
pkgs.xdot
] ++ lib.optionals pkgs.stdenv.isDarwin (with pkgs.darwin.apple_sdk; [
frameworks.Security
frameworks.CoreFoundation
]);

# https://devenv.sh/scripts/
scripts.hello.exec = "echo Welcome to Thousand Birds";
scripts.tbngrok.exec = "ngrok http --domain=thousandbirds.ngrok.dev 3002";
scripts.hello.exec = "echo Welcome to the Chidori dev enviroment";
scripts.run-ui.exec = "(cd toolchain/prompt-graph-ui && yarn run tauri dev";

enterShell = ''
Expand Down Expand Up @@ -58,20 +48,5 @@
'';
};

services.temporal = {
enable = true;

port = 17233;

namespaces = [ "mynamespace" ];

state = {
ephemeral = true;
sqlite-pragma = {
journal_mode = "wal";
};
};
};

# See full reference at https://devenv.sh/reference/options/
}

0 comments on commit 7ebbeb2

Please sign in to comment.