-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
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
Start working on docsrs-2.0 #306
Start working on docsrs-2.0 #306
Conversation
Is creating a branch with nothing in it necessary? I thought it was possible to make the changes fairly incrementally:
Most of these changes are independent of each other, and most of them don't need to care about how the rest of the application is structured, meaning we can swap out components as we go. Deleting literally everything and starting from scratch without at least keeping the templates around feels like it's discarding too much. |
I strongly believe starting from scratch and porting components bit by bit is really necessary. Almost every aspect of our current system is not compatible with the new system I mentioned. And I really don't think its really worth the effort to patch current system to make it work with new one. There is so many changes I'd like to make and I think it will be much easier if we start from scratch. For example I've been working on very core part of docs.rs for 2.0; building documentation. It is basically build_doc function right? Problem is there is even so many issues in this module. There is so many code repeats between build_doc and get_package. We are also not dumping master to anywhere. I think |
In that case, we might as well include "convert our use of the Cargo library to the Cargo binary and Since we're going to be starting over anyway, i wonder if it would be better to do this on a new repository, so we don't have to coordinate over the tighter PR/CI requirements of this one. (On the other hand, it seems like CI didn't run here, so maybe it's moot.) I feel like having the work on a side branch that's totally different from the master one may create some confusion if we try to bring more people on for it. We can swap out the repo when we want to release it. |
2¢: You could also start with a different repo, and later copy all of that new repo's commits into this repo, on another branch, or another directory. Moving PR/issue history around may be more difficult though, not sure if that it's relevant. 3¢: You could also just keep 2.0 in its own git-tracked directory in this repo, then use |
I've talked about it with Onur for the last few days, as they work on the initial steps in the rewrite. I think i've come around to using this new branch instead of a new repo or a branch on someone's fork:
So i'm going to merge this. Let's start the work toward a brighter docs.rs! |
I created a new branch (
docsrs-2.0
) and this is first patch against it. It's basically wiping out everything and making a fresh start. Also created a tag for 2.0 related work.