Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

Polyglot docs #104

Closed
jroper opened this issue Sep 17, 2019 · 13 comments
Closed

Polyglot docs #104

jroper opened this issue Sep 17, 2019 · 13 comments
Assignees
Labels
documentation Documentation
Projects

Comments

@jroper
Copy link
Member

jroper commented Sep 17, 2019

Eventually, all or most of the language specific support libraries may live in other repos, with Go likely being the first to do this, as discussed in #103. This raises a question for the docs. In an ideal world, documentation should live in the same repository as the code it documents, since updating documentation when a feature is added or changed should be part of the definition of done of a task, and PRs shouldn't be merged until the feature is done. It also allows things like code snippet validation to capture breaking changes before they are committed, and guarantee that if the breaking change is acceptable, the docs get updated since CI doesn't pass without it. But right now our approach to the docs is in a mono structure, with a single paradox project, and this also has a lot of advantages.

I think splitting up the docs will probably be the best answer long term, this will mean coming up with a way to deploy the docs that allows them to be split across repos. It might mean instead of deploying the docs to a single repo (replacing the entire contents of the repo each time), we deploy them to a subdirectory within a shared repo. We currently use travis's GitHub pages deployment support to deploy docs, that probably won't work, but we can easily replace this with our own custom scripts.

@ihostage
Copy link

@jroper Antora how one of the variants. I seeing that Tim worked on migrate Lightbend Tech Hub to Antora. 😄

@marcellanz
Copy link
Contributor

@jroper Would that apply to shared protobuf files for the CloudState protocol too? Together with the documentation they are shared with the main CloudState repository. If a support library builds in its repository by itself, it would have to download/copy over from somewhere. Would that be a similar shared artefact?

@pvlugter
Copy link
Member

I've created a shared paradox theme and plugin at https://github.com/cloudstateio/cloudstate-paradox.

Updated the main documentation to use this in #339.

For publishing the separate docs for language support modules: since we're using github pages, a simple approach would be publishing docs to the gh-pages branch of each support repo. These are automatically served under the repo name, so for example, the go support docs would be served under https://cloudstate.io/go-support. That may not be the structure that we want, as this is not under /docs/.

We could update the structure of the docs and publish everything under the one https://github.com/cloudstateio/docs repo. So we could change to having something like: cloudstate.io/docs/core, cloudstate.io/docs/go, and so on. This would be a breaking change for any links out there.

If we're changing structure, we may want to introduce the possibility for doc versioning as well. So we could have /docs/0.4.0, /docs/0.4.1, /docs/0.5.0, and then aliases for /docs/0.4.x -> /docs/0.4.1, /docs/0.5.x -> /docs/0.5.0, /docs/current -> /docs/0.5.x, and so on. We may not want to have all of these versions yet, but could make sense to introduce a version into the path and use /docs/current for now. We can then also start separating the stable release at /docs/current from snapshot docs at /docs/latest. Currently the docs are published from master, which may describe features that are not yet released. We can introduce more versioning and aliases if we use /docs/core/current or similar from now on.

Note that with this simple approach to separate docs, there won't be shared navigation. It will be like the separate module docs for https://akka.io/docs/

@pvlugter
Copy link
Member

pvlugter commented Jun 2, 2020

Docs from master now publish to https://cloudstate.io/docs/core/snapshot/

Have manually published current docs for previous tag: https://cloudstate.io/docs/core/current/
Which is an alias for https://cloudstate.io/docs/core/0.5.1/
These are automatically published by travis on tags.

The old docs are still there under https://cloudstate.io/docs/
These will removed once some more links have been updated, and will create a cloudstate docs home page instead.

And I'll start breaking out the language support docs.

@pvlugter
Copy link
Member

pvlugter commented Jun 2, 2020

I've removed the old docs now, updated links for Lightbend Cloudstate docs, and created a simple new docs index at https://cloudstate.io/docs/ using the cloudstate.io site styling.

@pvlugter
Copy link
Member

pvlugter commented Jun 7, 2020

Separate docs for language support modules:

  • JavaScript (in the main repo)
  • Java (in the main repo)
  • Go
  • Kotlin
  • Dart
  • Python
  • Spring Boot
  • .Net

@rstento
Copy link
Contributor

rstento commented Jun 15, 2020

If the separate repos for all languages exist now, this is easy enough to do. Antora can publish from multiple repos and make it look as if it is all one doc set. Or, if the docs for each language get large and complex enough, they can be published as separate "components" meaning the reader would have to select the component from a separate menu. I prefer the former because I think it is simpler for the reader. @pvlugter, I see you checked off Go and Python, does this mean you have already separated these docs? If so, could you point me to the repos? Thanks!

@pvlugter
Copy link
Member

The Cloudstate Go docs are here, in the Go support repo:

https://github.com/cloudstateio/go-support/tree/master/docs

The current version is published to https://cloudstate.io/docs/go/current/ which is an alias for https://cloudstate.io/docs/go/0.1.1/. Snapshot version of docs from master published to https://cloudstate.io/docs/go/snapshot/.

Similarly for Cloudstate Python (just the shell of docs currently):

https://github.com/cloudstateio/python-support/tree/master/docs

And the Cloudstate Spring Boot docs are being added here:

https://github.com/cloudstateio/springboot-support/tree/master/docs

The core docs are under the main https://github.com/cloudstateio/cloudstate repo, and published under similar versioning with current here: https://cloudstate.io/docs/core/current/ (which is currently version 0.5.1).

These all use the theme and sbt plugin from https://github.com/cloudstateio/cloudstate-paradox

Sounds good if Antora already has support for multiple repos. Note that each module has its own versioning and release cycles. For example, Cloudstate core is currently 0.5.1 and Cloudstate Go is 0.1.1 and so on, and these are released separately.

If these are being converted to Antora now, then I'll pause the work here.

@rstento
Copy link
Contributor

rstento commented Jun 17, 2020

@pvlugter, I'm converting the docs in the cloudstateio/cloudstate repo now. Per your checklist above, I'll only convert the Javascript and JS language docs as part of this effort. So, you can continue splitting off the others into their respective repos if you like. I will tackle conversion later, but for now I'll link from the cloudstateio doc to the snapshot you are publishing for Go and python. Once they are converted, I can include them instead of linking to them. The Cloudflow team has described how they use Antora versioning here: https://github.com/lightbend/cloudflow-enterprise-docs#updating-a-current-version-of-the-documentation. However, I have to think through how this will work with including content from multiple repos, each of which has it's own version.

@ihostage
Copy link

@rstento @pvlugter I right understand, that documentation will be migrated to Antora?

@rstento
Copy link
Contributor

rstento commented Jun 18, 2020

Yes, @ihostage. Any comments or suggestions?

@ihostage
Copy link

Any comments or suggestions?

@rstento No, only respect of this choice 😉 My suggestion (#104 (comment)) of using Antora wrote on 17 Sep 2019 when James created this issue 😂

@pvlugter
Copy link
Member

Per language support docs set up for markdown/paradox and then converted to asciidoc/antora now.

https://cloudstate.io/docs/

Cloudstate automation moved this from In progress to Done Oct 16, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
documentation Documentation
Projects
No open projects
Cloudstate
  
Done
Development

No branches or pull requests

6 participants