2023-04-06 17:34:30 +02:00
# aminda.eu
2015-05-01 09:50:59 +02:00
2023-04-06 17:34:30 +02:00
[![pre-commit.ci status ](https://results.pre-commit.ci/badge/github/Mikaela/mikaela.github.io/master.svg )](https://results.pre-commit.ci/latest/github/Mikaela/mikaela.github.io/master)
2015-05-01 09:50:59 +02:00
2023-04-06 17:34:30 +02:00
This website should be fairly typical Jekyll project. The index contains
`rel=me` links everywhere so projects such as Mastodon give me the green
checkmark.
2015-05-01 09:50:59 +02:00
2023-04-06 17:34:30 +02:00
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE - RUN doctoc TO UPDATE -->
2015-05-02 09:34:18 +02:00
2023-04-06 17:34:30 +02:00
- [Sitemaps ](#sitemaps )
- [Unusual directories ](#unusual-directories )
- [Submodules ](#submodules )
- [Building ](#building )
2015-05-02 09:34:18 +02:00
2023-04-06 17:34:30 +02:00
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
## Sitemaps
- `sitemap.xml` — automatically generated by Jekyll when building
- `sitemaps.xml` — manually written sitemap index pointing to sitemaps on my
2015-05-02 09:34:18 +02:00
sites. I am not sure how it works when there are multiple domains, so
I am keeping all sitemaps in robots.txt and sitemaps.xml on bottom
of it. Same will possibly happen with other domains.
2019-02-11 20:27:03 +01:00
2023-04-06 17:34:30 +02:00
## Unusual directories
Or directories that generally aren't encountered in other similar projects.
2019-02-11 20:27:03 +01:00
2023-04-06 17:34:30 +02:00
- `n/` - quick notes for my personal reference with memorable addresses.
- `r/` - my personal url redirector for links that I have to refer to more or less often.
- `txt/` - signed text files such as account list to decrease impact of identity theft attempts.
- `PGP/` - my current and some previous PGP keys.
2019-02-11 20:27:03 +01:00
2023-04-06 17:34:30 +02:00
### Submodules
2019-02-11 20:27:03 +01:00
2023-04-06 17:34:30 +02:00
- `ir/` - list of I2P services, previously a part of this repository for memorable addresses.
- `lfs-media/` - orphan branch containing lfs-media such as the avatars. However it doesn't work with GitHub pages.
- `or/` - same as `ir/` , but for Tor Onion Services.
2023-02-22 19:28:38 +01:00
2023-04-06 17:34:30 +02:00
## Building
2019-03-27 18:52:19 +01:00
2023-04-06 17:34:30 +02:00
1. Install `bundler` onto your system.
1. `cd` to root of this repository, if you didn't already.
1. _Optionally_ configure where you wish bundler to install everything. This repository already specifies `bundle config set --local path 'vendor/bundle'` in the gitignored `.bundle/config` file.
1. Run `bundle install`
1. You are done, `bundle exec jekyll <build|serve>` and similar commands should work, just remember `bundle exec` in front of the command so the system wide installation doesn't unintentionally get used.