about summary refs log tree commit diff
path: root/static (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-10-29ref(style): simplify further the style of the siteFranck Cuny1-55/+45
Get rid of the footer and the icons. Set a light background color, and simplified the listing of the pages.
2022-10-27ref: update humans.txtFranck Cuny1-6/+3
2022-10-27feat(content): generate the resume in PDF tooFranck Cuny1-1/+3
That way if someone is looking for it ...
2022-10-27ref(css): reduce thickness of decoration for headersFranck Cuny1-1/+1
2022-10-27ref(css): fewer colors for links; underline headersFranck Cuny1-7/+8
2022-10-27feat(content): add my resumeFranck Cuny4-2/+122
Add my resume to the content, with a dedicated CSS. The resume is in org-mode format, and I use `pandoc` to convert it to HTML. This is done when the site is build, and is integrated in the docker image. It is available at /resume.html, but is not listed on the site, that way I can give the URL to who ever is interested in the future. It would be useful to also generate a PDF version of it and store it with other static content.
2022-10-27ref(css): set font family to sans-serif; darker background for codeFranck Cuny1-1/+2
2022-10-26ref(content): set correct headers for notesFranck Cuny5-45/+45
2022-10-26ref(css): clean up and adjust a few thingsFranck Cuny1-16/+20
2022-10-26ref(layout): remove the list of post from the main pageFranck Cuny1-9/+0
2022-10-26content: add the notes backFranck Cuny7-1/+1462
2022-10-23flake.lock: Updategithub-actions[bot]1-3/+3
Flake lock file updates: • Updated input 'nixpkgs': 'github:nixos/nixpkgs/3f5416e81a456d243a44c0651873ed247d51f5b2' (2022-10-16) → 'github:nixos/nixpkgs/6d3aacb2508b4230b96b3eadb377da426617e4ef' (2022-10-23)
2022-10-17build(deps): bump cachix/install-nix-action from 17 to 18dependabot[bot]2-2/+2
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 17 to 18. - [Release notes](https://github.com/cachix/install-nix-action/releases) - [Commits](https://github.com/cachix/install-nix-action/compare/v17...v18) --- updated-dependencies: - dependency-name: cachix/install-nix-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
2022-10-16flake.lock: Updategithub-actions[bot]1-3/+3
Flake lock file updates: • Updated input 'nixpkgs': 'github:nixos/nixpkgs/34c5293a71ffdb2fe054eb5288adc1882c1eb0b1' (2022-10-09) → 'github:nixos/nixpkgs/3f5416e81a456d243a44c0651873ed247d51f5b2' (2022-10-16)
2022-10-09flake.lock: Updategithub-actions[bot]1-3/+3
Flake lock file updates: • Updated input 'nixpkgs': 'github:nixos/nixpkgs/a070b3c46b348e3c68e33ea233c18dd5582f3e29' (2022-10-08) → 'github:nixos/nixpkgs/34c5293a71ffdb2fe054eb5288adc1882c1eb0b1' (2022-10-09)
2022-10-09ci: submit the PR as the GitHub-actions botFranck Cuny1-1/+0
I want to make sure it shows up in my notifications.
2022-10-09ci: remove GHA to automerge pull requestFranck Cuny1-8/+0
For this to work, branch protection needs to be enabled on the repository. I can't do this via terraform as it's only supported for organizations, not individual accounts. I'm not going to manage this setting in each repository manually, instead I'll drop this feature.
2022-10-08Update update.yamlFranck Cuny1-1/+1
Fix the cron syntax.
2022-10-08ci: update the actions for deploy and updateFranck Cuny2-1/+13
Don't trigger a deployment if we're updating one of the action, as there are no changes to the application itself. For the update workflow, run it once a week, and automatically merge it.
2022-10-08flake.lock: Updategithub-actions[bot]1-6/+6
Flake lock file updates: • Updated input 'flake-utils': 'github:numtide/flake-utils/a4b154ebbdc88c8498a5c7b01589addc9e9cb678' (2022-04-11) → 'github:numtide/flake-utils/c0e246b9b83f637f4681389ecabcb2681b4f3af0' (2022-08-07) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/870249df2cc640e2278cd0bc599ebbb246b00802' (2022-04-30) → 'github:nixos/nixpkgs/a070b3c46b348e3c68e33ea233c18dd5582f3e29' (2022-10-08)
2022-10-07ci: add GitHub actions and depedendabot configurationFranck Cuny3-0/+45
Configure dependabot to report possible update for various actions that we use. Add two workflows: - update the flake dependencies once a week - deploy to fly.io when the main branch is updated
2022-10-07ref(build): build and deploy with nixFranck Cuny6-50/+68
Refactored the build of the docker image to be done with nix: the flake knows how to build the docker image, using caddy as a HTTP server. It generates a small image, with the configuration for caddy and the site generated by hugo (`nix build`). Deleted the Dockerfile since the creation is done with nix. Got rid of the deployment script since this is also done via the flake (`nix run .#deploy`).
2022-10-04build: drop the configuration for droneFranck Cuny1-23/+0
2022-10-04fix(static): update the list of SSH public keysFranck Cuny1-2/+2
2022-10-04fix(layouts): set the URL to GitHubFranck Cuny1-1/+1
2022-05-11sign the drone configurationFranck Cuny1-0/+6
2022-05-10deploy: stop the flyctl agent at the endFranck Cuny1-0/+2
I ran into the following issue: ``` The agent failed to start with the following error log: 162022/05/11 02:38:11.375368 srv another instance of the agent is already running ``` I'm not sure this is the right approach, but it's a start.
2022-05-10delete MakefileFranck Cuny1-19/+0
This is not needed anymore, I'm not running it in a container, and the build is done remotely by fly when I do a build.
2022-05-10who knowsFranck Cuny1-1/+1
2022-05-10i don't think it will workFranck Cuny2