Urbano Component Documentation source repository.
| Environment | URL | Status |
|---|---|---|
| Development | https://dev.docs.urbano.io | |
| Production | https://docs.urbano.io |
You can run the documentation site locally using Docker:
./serve-docker.shOr directly:
docker run --rm -it -p 8080:8000 -v $(pwd):/docs custom-mkdocs-materialUrbano 2 documentation uses mike for versioning. The version selector dropdown will not appear during a standard local mkdocs serve or when running the Docker container locally using the default command. It is only injected when the site is deployed.
To deploy a new version to the gh-pages branch (which automatically builds the version dropdown), use the mike CLI.
For example, to deploy version 2.1.0 and tag it as latest:
mike deploy 2.1.0 latest --update-aliasesTo preview the versioned site locally (including the dropdown):
mike serve(Note: mike commands need to be run inside an environment where the mkdocs dependencies are installed.)