Hi everyone
Just a quick announcement that the Internet Identity canister now supports the dfx deps feature.
You can add Internet Identity to your dev setup by specifying the following block in the canisters
object in the dfx.json
file:
{
"canisters": {
...
"internet-identity" : {
"type": "pull",
"id": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
},
...
}
This will pull in the dev build of Internet Identity (without WebAuthn and with a deterministic captcha).
If you need another flavour (i.e. prod or test build) you will still need to add Internet Identity via URL and type custom:
"internet_identity_prod": {
"type": "custom",
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity_production.wasm.gz",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
}
},
Please let me know if you encounter any issues.