-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refs #147: Stubbed mkDocs-based documentation directory and docker-compose file for local inspection. * refs #147: Introduced a working version of the Godot Docs theme, plus an example page. * refs #147: Some initial additions to the docs structure. * refs #147: stubbed a bunch of pages and sections. * refs #147: stubbed all the pages and sections. * refs #147: admonitions are now supported, importers moved under editor. * refs #147: Added target directory for exported codeblock docks. * refs #147: Added support to front matter sorting, plus navigation sorted. * refs #147: Finalized the local environment, plus added README file to execute it locally on Windows, Mac and Linux.
- Loading branch information
1 parent
ae16e5b
commit d3dfed9
Showing
124 changed files
with
2,979 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM minidocks/mkdocs:latest | ||
|
||
RUN pip install mkdocs-nav-weight |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
all: up | ||
|
||
up: | ||
docker compose pull | ||
docker compose up -d | ||
|
||
down: | ||
docker compose down | ||
|
||
cli: | ||
docker compose run --rm documentation bash | ||
|
||
logs: | ||
docker compose logs -f |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: "3" | ||
services: | ||
documentation: | ||
ports: | ||
- 286:80 | ||
volumes: | ||
- ./docs:/app | ||
working_dir: /app | ||
labels: | ||
- com.dnsdock.alias=docs.popochiu.local | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
command: serve -a 0.0.0.0:80 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
# Popochiu official documentation | ||
|
||
This folder stores the official documentation for Popochiu, available at https://popochiu.github.com | ||
|
||
The documentation is maintained alongside the code in the same repository, which makes it easier to enforce our _Definition of Done_. | ||
|
||
Popochiu Documentation is written in [Markdown](https://www.markdownguide.org) and rendered with [MkDocs](https://www.mkdocs.org). Please, read on to learn how to work on the docs. | ||
|
||
## Running the documentation locally | ||
|
||
This repo provides an encapsulated, platform-agnostic and production-parity local development environment, based on Docker and GNU Make. | ||
|
||
Docker is available natively on any GNU/Linux distribution, but Windows and MacOSX are supported by Docker Desktop or other means. | ||
|
||
The only dependencies needed to build the docs are: | ||
|
||
* Docker | ||
* Docker Compose | ||
* GNU Make | ||
|
||
We hereby provide summary instructions to setup the necessary dependencies on each supported OS. | ||
|
||
### GNU/Linux | ||
|
||
This quick guide provides direct information for Ubuntu, Arch and derivatives of both distros. | ||
If you use a different distro, odds are good that you know what you're doing, so please Google your sources. | ||
|
||
Please refer to the documentation of you distribution to learn how to install Docker and Docker Compose: | ||
|
||
* [Ubuntu and derivatives](https://docs.docker.com/engine/install/ubuntu/) | ||
* [Arch and derivatives](https://wiki.archlinux.org/title/Docker#Installation) | ||
|
||
Please remember to install Docker as well as the Compose plugin. | ||
|
||
Make is provided by the `build-essential` metapackage on Ubuntu and derivatives, while on Arch and derivatives you can install `base-devel`: | ||
|
||
* **Ubuntu**: `sudo apt install build-essentials` | ||
* **Arch**: `sudo pacman -Sy base-devel` | ||
|
||
That's it. You can go to the "Run the docs" section to learn how to run your dock. | ||
|
||
### MS Windows | ||
|
||
You can install all the necessary packages natively on Windows or use a WSL environment (see next paragraph). If you prefer to stay on native Windows, please read on. | ||
|
||
> **TIP**: We strongly suggest you run make from a bash or similar Shell like the one provided by _Git Bash_. Should you use WSL2, your distro shell will be compatible out of the box. If you run make natively on PowerShell, YMMV. | ||
#### Method 1: Native Toolchain | ||
|
||
Please [follow the official documentation](https://docs.docker.com/desktop/install/windows-install/) to install Docker Desktop on Windows. | ||
|
||
The Compose plugin is automatically available on Windows when you install Docker Desktop. | ||
|
||
About Make, there are different ways to install it: | ||
|
||
1. Use the Chocolatey package: `choco install make` (**preferred option**, requires [Chocolately Package Manager to be installed](https://chocolatey.org/install) first) | ||
2. Direct download of [Make for Windows](https://gnuwin32.sourceforge.net/packages/make.htm) | ||
3. Use [GnuWin32](http://gnuwin32.sourceforge.net/install.html) (particularly suitable for older Windows versions (2000/XP/2003/Vista/7/2008 with msvcrt.dll) | ||
|
||
#### Method 2: WSL2 | ||
|
||
Another way to run the docs locally is to activate [Windows Subsystem for Linux (WSL/WSL2)](https://learn.microsoft.com/en-us/windows/wsl/install-win10), and chose one of the available distros (Ubuntu being a very sane choice). | ||
|
||
Should you go down this route, once you have WSL configured with an Ubuntu or Arch instance, please follow the instructions for GNU/Linux. | ||
|
||
### MacOSX | ||
|
||
Please [follow the official documentation](https://docs.docker.com/desktop/install/mac-install/) to install Docker Desktop on MacOSX. | ||
|
||
The Compose plugin is automatically available on Mac when you install Docker Desktop. | ||
|
||
About Make, there are different ways to install it: | ||
|
||
* Use Homebrew package manager: `brew install make` (**preferred option**, requires [Homebrew Package Manager to be installed](https://brew.sh/#install) first) | ||
* Run XCode: `xcode-select --install` (confirm installation in the popup window and agree to the ToS) | ||
|
||
## Run the documentation | ||
|
||
To run the documentation, just enter the project's directory and issue this command: | ||
|
||
> `make local-docs-up' | ||
This will start the Docker container, and will bind port 286 of the host to the running instance of MkDocs in the container. To view the docs live in your browser, just visit [http://localhost:286](http://localhost:286). | ||
|
||
To stop the container service, just issue | ||
|
||
> `make local-docs-down` | ||
The documentation supports live reloading, so your browser will automatically update when you save a file you're working on, create a new file or folder. | ||
|
||
Please, read the contribution rules before pushing changes to Popochiu Documentation. | ||
|
||
## How to publish the documentation to production | ||
|
||
MkDocs is automatically triggered by GitHub automation so that new versions of the documentation are published whit every new release. | ||
|
||
> TODO: create a live documentation site for dev branch too. | ||
## Additional information | ||
|
||
1. For those who make use of DNSDock or Dinghy Proxy, the documentation can be accessed visiting [http://docs.popochiu.local](docs.popochiu.local) on port `80`. | ||
2. You can do without GNU Make and use Docker Compose direcly, issueing: | ||
* `docker compose up -d` to run the service in background | ||
* `docker compose down` to stop the service | ||
* `docker compose up` to run the service and display logs in the console (`ctrl-c` will stop the service and send you back to the console) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.wy-nav-side { overflow: visible; } | ||
.wy-side-scroll { overflow-x: inherit; } | ||
|
||
.algolia-autocomplete { | ||
display: block !important; | ||
} |
Oops, something went wrong.