No description
Find a file
ayakael f9662dc6ad
All checks were successful
/ render (push) Successful in 35s
sidebar.html: add email list + archives
2025-03-23 16:37:54 -04:00
.forgejo/workflows forge: use redirects instead of symbolic links 2025-02-19 14:03:50 -05:00
css Initial commit 2025-02-15 01:21:15 -05:00
error Initial commit 2025-02-15 01:21:15 -05:00
fonts Initial commit 2025-02-15 01:21:15 -05:00
images Initial commit 2025-02-15 01:21:15 -05:00
meta Initial commit 2025-02-15 01:21:15 -05:00
plugins/IkiWiki/Plugin Initial commit 2025-02-15 01:21:15 -05:00
templates templates/page: update favicon and icon 2025-02-19 00:48:56 -05:00
tools Initial commit 2025-02-15 01:21:15 -05:00
.gitignore Initial commit 2025-02-15 01:21:15 -05:00
.pages-domains Change name of domains to avoid confusion 2025-02-15 01:52:13 -05:00
.pages-redirect pages-redirect: remove index redirect 2025-02-19 14:18:12 -05:00
android-chrome-192x192.png Initial commit 2025-02-15 01:21:15 -05:00
android-chrome-512x512.png Initial commit 2025-02-15 01:21:15 -05:00
apple-touch-icon.png templates/page: update favicon and icon 2025-02-19 00:48:56 -05:00
browserconfig.xml Initial commit 2025-02-15 01:21:15 -05:00
favicon-16x16.png Initial commit 2025-02-15 01:21:15 -05:00
favicon-24x24-white.png Initial commit 2025-02-15 01:21:15 -05:00
favicon-24x24.png Initial commit 2025-02-15 01:21:15 -05:00
favicon-32x32.png Initial commit 2025-02-15 01:21:15 -05:00
favicon-96x96.png templates/page: update favicon and icon 2025-02-19 00:48:56 -05:00
favicon.ico templates/page: update favicon and icon 2025-02-19 00:48:56 -05:00
favicon.png templates/page: update favicon and icon 2025-02-19 00:48:56 -05:00
favicon.svg templates/page: update favicon and icon 2025-02-19 00:48:56 -05:00
footer.html Remove content 2025-02-15 01:54:19 -05:00
ikiwiki.setup ikiwiki.setup: update name 2025-02-19 00:42:00 -05:00
index.mdwn index: add link to old website + new email 2025-02-19 00:54:02 -05:00
LICENSE Initial commit 2025-02-15 01:21:15 -05:00
mstile-150x150.png Initial commit 2025-02-15 01:21:15 -05:00
README.md Initial commit 2025-02-15 01:21:15 -05:00
safari-pinned-tab.svg Initial commit 2025-02-15 01:21:15 -05:00
sidebar.html sidebar.html: add email list + archives 2025-03-23 16:37:54 -04:00
site.webmanifest templates/page: update favicon and icon 2025-02-19 00:48:56 -05:00
web-app-manifest-192x192.png templates/page: update favicon and icon 2025-02-19 00:48:56 -05:00
web-app-manifest-512x512.png templates/page: update favicon and icon 2025-02-19 00:48:56 -05:00

ilot.io

Upstream: https://forge.ilot.io/ilot/ilot.io

Build Status Push Status

Forgejo Actions

This project's static Pages are built by Forgejo Actions, following the steps defined in .forgejo/workflows/pages.yaml. That builds this website using ikiwiki, and pushes the build artifacts to the public branch.

The public branch has its own workflow following steps defined in forgejo/workflows/deploy.yaml that uploads the artifacts to a remote HTTP server for deployment in production. This workflow is automatically updated from main so that public should never be manually modified.

The deployment is done by a simple remote git push via SSH to a non-bare repo where git config receive.denyCurrentBranch is set as updateInstead. This allows this repo to be checked out as public, allowing it to be a root for your favorite HTTP server.

The following secrets are expected to be set for operation:

  • PAGES_PRIVKEY: SSH private key that is used to push to the HTTP server's git repo
  • PAGES_TOKEN: Forgejo application token used to push to public branch.

The following variables are expected to be set for operation:

  • PAGES_TARGET: SSH target for HTTP server's git repo, following this format: user@example.net:/path/to/http/repo

Building locally

To work locally with this project, you'll have to follow the steps below:

  1. Fork, clone or download this project
  2. Install ikiwiki:
  3. Generate the website: ikiwiki --setup ikiwiki.setup
  4. Start http-server: ./test-server.sh
  5. Preview your project: open 127.0.0.1:8080 in your browser

Read more at ikiwiki's documentation.

Contributing

  1. Fork the main ilot.io repo.

  2. Checkout the forked repository.

    • git clone ssh://git@forge.ilot.io/$USER/ilot.io
    • cd ilot.io
  3. Make your changes.

  4. Do local build.

    • ikiwiki --setup ikiwiki.setup
  5. Fix any errors that come up and rebuild until it works locally.

  6. Commit the changes to the git repo in a git branch

    • git checkout -b <name>
    • git add changes
    • git commit -m 'content/index: descriptive description'
    • git push
  7. Create a merge request with your changes by following link in server response.

  8. Once the tests in the merge-request pass, and reviewers are happy, your changes will be merged.