-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update local services and fixtures to use latest engine version (#33)
Update local docker-compose configuration to use the latest engine version. This also switches to pulling engine source from the open source repo. The implementation for dev-auth-webhook changed to a Rust project, so the nix configuration is updated accordingly. Ticket: https://hasurahq.atlassian.net/browse/MDB-109
- Loading branch information
Showing
22 changed files
with
1,194 additions
and
831 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
{ pkgs }: | ||
|
||
let | ||
dev-auth-webhook = pkgs.pkgsCross.linux.dev-auth-webhook; | ||
in | ||
{ | ||
service = { | ||
useHostStore = true; | ||
# Get node from a Docker image instead of from Nix because cross-compiling | ||
# Node from Darwin to Linux doesn't work. | ||
image = "node:lts-alpine"; | ||
command = [ | ||
"node" | ||
"${pkgs.pkgsCross.linux.dev-auth-webhook}/index.js" | ||
"${dev-auth-webhook}/bin/hasura-dev-auth-webhook" | ||
]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.