8000 Clean up Devenv by kvey · Pull Request #20 · ThousandBirdsInc/chidori · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Clean up Devenv #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in 8000 to your account

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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