Go to file
Neil Hanlon 0a9ced1eef
All checks were successful
mkdocs build / build (push) Successful in 1m17s
chore: init repo, deploy to fastly
2024-08-16 00:20:25 -04:00
.github/workflows chore: init repo, deploy to fastly 2024-08-16 00:20:25 -04:00
compute-js chore: init repo, deploy to fastly 2024-08-16 00:20:25 -04:00
docs chore: init repo, deploy to fastly 2024-08-16 00:20:25 -04:00
.gitignore Initial commit 2024-08-16 03:05:44 +00:00
Containerfile Initial commit 2024-08-16 03:05:44 +00:00
docker-compose.yml Initial commit 2024-08-16 03:05:44 +00:00
LICENSE Initial commit 2024-08-16 03:05:44 +00:00
mkdocs.yml chore: init repo, deploy to fastly 2024-08-16 00:20:25 -04:00
README.md chore: init repo, deploy to fastly 2024-08-16 00:20:25 -04:00
requirements.txt Initial commit 2024-08-16 03:05:44 +00:00

SIG/Desktop and Gaming Wiki

@TODO - fill in :)

Continuous Integration / Continuous Deployment

Actions Runner executes workflow to publish to https://sig-desktop.rocky.page on push to main.

Building Locally

In order to build this wiki locally, a docker-compose configuration and container file are supplied which when invoked, will launch mkdocs' development server in a container bound to port 8000 and will live-reload when changes are made to the wiki files.

To run the containers on your system, invoke podman or docker compose like so:

podman-compose -f docker-compose.yml up -d

The container will build and then launch itself. Afterwards, you should be able to view the wiki content at http://localhost:8000.

The compose file accepts a build argument if you need to run it on a different port. For example, to bind to port 8080 on your local machine:

podman-compose -f docker-compose --build-arg PORT=8080 up -d

Project layout

mkdocs.yml    # The configuration file.
README.md     # This file.
docs/
    index.md  # The documentation homepage.
    ...       # Other markdown pages, images and other files.