export to flat-manager - #54
Merged
Merged
Conversation
In order to add additional export modes, namely flat-manager, refactor the way exporting works. In the future the user will have the choice to either export to a local repo, install locally, or push to flat-manager. this means that `--export` now takes a manditory argument. As a side effect, it is no longer supported to install and export to a local repo at the same time. This is never a thing I used, and isn't something that I want to support.
This is going to be used in upcoming patches to make more transformations of the arguments into a form more useful further down. It already allows us to clean up some of the differences between how the generate cli is structured and how we want to use that data.
So we don't have to do this manually.
Using `Iterator` is deprecated now
This adds a requirement for keyring, which is used to store the repo token secret. I don't plan to support any other way to store and retrieve the token, the logic here isn't actually that complicated, so an end user can just write their own uploader if they want that. Fixes: #41
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This cleans up the export system a bit, adds some complexity in handling keys. That probably will need more work, but for now it's good.
Fixes #41