aboutsummaryrefslogtreecommitdiff
path: root/flake.nix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ref(build): build and deploy with nixFranck Cuny2022-10-071-28/+52
| | | | | | | | | | | | 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`).
* who knowsFranck Cuny2022-05-101-1/+1
|
* i don't think it will workFranck Cuny2022-05-101-8/+10
|
* another tryFranck Cuny2022-05-101-0/+21
|
* one more timeFranck Cuny2022-05-101-1/+1
|
* add drone configuration and cleanup nixFranck Cuny2022-05-101-14/+18
| | | | | | | | Add a drone configuration to run the deploy on a push to the main branch. Cleanup the nix configuration to only keep support for `nix run` (which will run the hugo server).
* build: slowly moving to nixFranck Cuny2022-05-011-0/+19
Add a `flake.nix' configuration to pull the required dependencies and run the server. Remove a few targets from the Makefile and move the deployment part to a script.