We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 to your account
See QuantConnect/lean-cli#373
New Encryption page under Lean CLI > Projects after Workflows.
It is similar to Workflows since there is the cloud component
lean cloud push --encrypt --key FILE "Project Name" lean cloud pull --encrypt --key FILE "Project Name" lean cloud push --decrypt --key FILE "Project Name" lean cloud pull --decrypt --key FILE "Project Name"
I think that normally users won't push --decrypt, since QuantConnect IDE will display the files.
push --decrypt
and a local component
lean encrypt --key FILE "Project Name" lean decrypt --key FILE "Project Name"
Decrypt before editing the file.
The mixed mode would not be decrypted locally and push with encrypt and pull with decrypt. Option 1 (decrypt on pull)
lean cloud pull --decrypt --key FILE "Project Name" lean cloud push --encrypt --key FILE "Project Name"
Option 2 (pull encrypted, you may not want to decrypt now)
lean cloud pull "Project Name" lean decrypt --key FILE "Project Name" lean cloud push --encrypt --key FILE "Project Name"
Finally, update the API Reference.
master
The text was updated successfully, but these errors were encountered:
Also need to update https://www.quantconnect.com/docs/v2/lean-cli/projects/configuration#02-Properties to include the new encrypted and encryption-key-path properties
encrypted
encryption-key-path
Sorry, something went wrong.
DerekMelchin
Successfully merging a pull request may close this issue.
Expected Behavior
See QuantConnect/lean-cli#373
New Encryption page under Lean CLI > Projects after Workflows.
It is similar to Workflows since there is the cloud component
I think that normally users won't
push --decrypt
, since QuantConnect IDE will display the files.and a local component
Decrypt before editing the file.
The mixed mode would not be decrypted locally and push with encrypt and pull with decrypt.
Option 1 (decrypt on pull)
Option 2 (pull encrypted, you may not want to decrypt now)
Finally, update the API Reference.
Checklist
master
branchThe text was updated successfully, but these errors were encountered: