Public milksad.info website source code repository https://milksad.info
 
 
 
 
 
 
Go to file
Christian Reitter 7af3c18c50 Add blog post no.7 2024-04-20 15:15:36 +02:00
_includes Improve front page and navigation header links 2024-02-13 15:27:14 +01:00
_layouts Add blog posts no.4, minor FAQ update 2024-01-25 13:25:36 +01:00
_plugins Add blog posts no.2 and no.3, customize Jekyll. 2024-01-25 13:25:36 +01:00
_posts Add blog post no.7 2024-04-20 15:15:36 +02:00
_sass Add blog posts no.2 and no.3, customize Jekyll. 2024-01-25 13:25:36 +01:00
assets Add blog post no.7 2024-04-20 15:15:36 +02:00
.dockerignore Improve build system, update Jekyll dependencies 2024-02-01 13:50:12 +01:00
.gitignore Improve build system, update Jekyll dependencies 2024-02-01 13:50:12 +01:00
.gitmodules clean up jekyll-theme-console copy, add license notice 2023-11-10 18:00:08 +01:00
404.html First published Milk Sad website commit 2023-11-10 17:17:52 +01:00
Dockerfile Improve build system, update Jekyll dependencies 2024-02-01 13:50:12 +01:00
Gemfile Add blog posts no.2 and no.3, customize Jekyll. 2024-01-25 13:25:36 +01:00
Gemfile.lock Update Jekyll dependencies 2024-04-14 13:53:50 +02:00
LICENSE correct LICENSE, Dockerfile, README 2023-11-10 17:52:07 +01:00
Makefile Improve build system, update Jekyll dependencies 2024-02-01 13:50:12 +01:00
README.md clean up content from Distrust Jekyll template, content on removed submodule 2023-11-10 18:27:09 +01:00
_config.yml Improve build system, update Jekyll dependencies 2024-02-01 13:50:12 +01:00
build.sh First published Milk Sad website commit 2023-11-10 17:17:52 +01:00
disclosure.md correct timeline ordering 2023-11-10 19:11:29 +01:00
faq.md Add some basic files, fix links 2024-02-13 15:26:59 +01:00
favicon.ico Add some basic files, fix links 2024-02-13 15:26:59 +01:00
index.md Improve front page and navigation header links 2024-02-13 15:27:14 +01:00
lookup.md Improve front page and navigation header links 2024-02-13 15:27:14 +01:00
nginx.conf tune and optimize Docker container and nginx configuration 2023-11-11 15:41:20 +01:00
robots.txt Add some basic files, fix links 2024-02-13 15:26:59 +01:00
updates.md Add blogpost format, RSS, first blogpost entry 2023-11-23 01:39:10 +01:00

README.md

milksad.info

Web page source.

Instructions

  1. Install make.
  2. Install docker
  3. Build Docker container
$ make build
  1. Serve site at 0.0.0.0:4000:
$ make serve

Publish Docker container to Registry

  1. Use docker login with a permission token with write package scope
  2. Tag container with repo name
docker tag milksad-distrust-co git.distrust.co/milksad/website
  1. Push container to container registry
docker push git.distrust.co/milksad/website

Generate Static Files

  1. Output static files in _site directory:
$ make _site

Cleanup

  1. Remove all build artifacts:
$ make fullclean