Refactoring and deployment.keys implementation

More refactoring of the deployment process, as well as an initial
implementation of `deployment.keys`.

Fixes #2.
This commit is contained in:
Zhaofeng Li 2021-02-08 18:38:14 -08:00
parent 21c2bef3ad
commit 84aa165aef
19 changed files with 1156 additions and 461 deletions

View file

@ -66,6 +66,7 @@ For a sample configuration, see <https://github.com/zhaofengli/colmena>.
bind_command!(apply_local, app);
bind_command!(build, app);
bind_command!(introspect, app);
bind_command!(upload_keys, app);
let matches = app.clone().get_matches();
@ -73,6 +74,7 @@ For a sample configuration, see <https://github.com/zhaofengli/colmena>.
command!("apply-local", apply_local, matches);
command!(build, matches);
command!(introspect, matches);
command!("upload-keys", upload_keys, matches);
app.print_long_help().unwrap();
}