[READ-ONLY] Mirror of https://github.com/flo-bit/tiny-docs. quick setup, simple, minimalistic docs for your github project flo-bit.dev/tiny-docs/
0

Configure Feed

Select the types of activity you want to include in your feed.

34 2 0

Clone this repository

https://git.vm.fail/flo-bit.dev/tiny-docs https://git.vm.fail/did:plc:ajihw4ksuxbtjpirho7k4wdm
ssh://git@knot1.tangled.sh:2222/flo-bit.dev/tiny-docs ssh://git@knot1.tangled.sh:2222/did:plc:ajihw4ksuxbtjpirho7k4wdm

For self-hosted knots, clone URLs may differ based on your setup.


README.md

Tiny docs#

How to use#

  1. Enable github pages in the repo settings. Go to SETTINGS → PAGES → SOURCE: Github Actions

  2. Add a new github action .github/workflows/docs.yml with the following content:

name: Deploy Docs

on:
    push:
        branches: [main]
    workflow_dispatch:

permissions:
    contents: read
    pages: write
    id-token: write

jobs:
    docs:
        uses: flo-bit/tiny-docs/.github/workflows/tiny-docs.yml@v1
  1. Run the workflow manually or push to the main branch, after a minute or two your docs should be live at https://<yourusername>.github.io/<yourrepo>.

The docs will include all markdown files in the docs/ folder of your repo as well as the Readme.md file.