anoma / anoma-archive

Reference implementation of the Anoma protocols in Rust.
https://anoma.net
GNU General Public License v3.0
425 stars 176 forks source link

Quick install command for non-production situations #578

Open cwgoes opened 2 years ago

cwgoes commented 2 years ago

As a tester of the Anoma node, client, etc. in testnets, I'd like the ability to build Anoma quickly (if this comes with some performance costs, that's fine) so that I can get started testing without waiting so long. Could there be an option to make install-dev or something like that to install a development (or less-optimised) build that would complete faster (ideally within a minute or so)?

┆Issue is synchronized with this Asana task by Unito

tzemanovic commented 2 years ago

Before we have this, one can use cargo install --path ./apps --no-default-features --features std --debug. (we have to specify the features, because the "dev" feature is currently enabled by default for convenience. In near future, the "dev" feature will be disabled by default).

tzemanovic commented 2 years ago

The "dev" has been switched off by default in #595, the new command is just cargo install --path ./apps --debug