quickstart.sh was implemented because we needed to prioritize getting it out. The problem with it is that it depends on CURL ETC. Maybe have it as a part of the SDK package? Once installed the user could instead:
python3 -m avnet.iotconnect.sdk.lite.quicksetup
as the SDK is already installed, and that way we don't depend on curl/wget and whatnot. We have python anyways and probably everything else we need except for cryptography / hazmat, which we could maybe get around by somehow morphing the openssl?
Considerations:
- Consider potential re-use where a different main python script would be used that exercises the actual board specific demo project.py assumed to be in the current directory.
quickstart.sh was implemented because we needed to prioritize getting it out. The problem with it is that it depends on CURL ETC. Maybe have it as a part of the SDK package? Once installed the user could instead:
as the SDK is already installed, and that way we don't depend on curl/wget and whatnot. We have python anyways and probably everything else we need except for cryptography / hazmat, which we could maybe get around by somehow morphing the openssl?
Considerations: