The source code to build and host the main distrust.co landing page(s). https://distrust.co
Go to file
Anton Livaja 4e3b0154f7
fix: links
2024-03-28 20:56:01 -04:00
_includes feat: add tools page and update action button copy 2024-03-28 20:34:05 -04:00
_layouts fix: links 2024-03-28 20:56:01 -04:00
_sass Merge branch 'main' into feat/tooling-page 2024-03-28 20:36:50 -04:00
_vendor add theme submodule 2023-05-04 19:45:35 -07:00
assets clean up js 2023-12-28 13:42:30 -05:00
files assets/files -> files 2023-08-08 09:47:12 -07:00
.dockerignore Dockerfile, Makefile: build into nginx container 2023-07-22 21:50:14 -05:00
.gitignore Add Dockerized workflow 2023-01-24 14:51:59 -06:00
.gitmodules move vendor to _vendor 2023-05-04 19:39:41 -07:00
404.html Initial commit 2023-01-21 12:06:10 -06:00
Dockerfile Dockerfile, -nginx.conf: regenerate nginx mime types using Debian media-types package 2023-08-05 15:24:54 -05:00
Gemfile move vendor to _vendor 2023-05-04 19:39:41 -07:00
Gemfile.lock Re-add Makefile and Docker workflows 2023-07-22 17:23:57 -04:00
LICENSE Add LICENSE 2023-01-22 20:43:09 -06:00
Makefile Makefile: add error skips to clean targets 2023-07-22 22:50:31 -05:00
README.md Add instructions for new Docker workflow options 2023-07-22 23:20:52 -04:00
_config.yml feat: add tools page and update action button copy 2024-03-28 20:34:05 -04:00
about.md update design and clean up content 2023-10-24 12:47:07 -04:00
contact.md feat: add tools page and update action button copy 2024-03-28 20:34:05 -04:00
index.md update design and clean up content 2023-10-24 12:47:07 -04:00
services.md update design and clean up content 2023-10-24 12:47:07 -04:00
tools.md feat: add tools page and update action button copy 2024-03-28 20:34:05 -04:00

README.md

distrust.co

Web page source.

Instructions

  1. If the repo was not cloned with submodules:
$ git submodule update --init --recursive
  1. Install make.
  2. Install docker
  3. Build (export) site to _site directory:
$ make build
  1. Serve site at 0.0.0.0:4000:
$ make serve

Generate Static Files

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

Cleanup

  1. Remove all build artifacts:
$ make fullclean