Go to file
Steve Russo 1bb22b9aaf just close the nav drawer when the page loads 2022-04-25 08:37:58 -04:00
assets BlogPost_BooleanNames (#22) 2020-07-30 22:44:24 +00:00
content Use local image for SBA Ponderay card. 2022-04-20 14:34:55 -07:00
layouts just close the nav drawer when the page loads 2022-04-25 08:37:58 -04:00
static Use local image for SBA Ponderay card. 2022-04-20 14:34:55 -07:00
.gitignore Ignore Hugo build lock file. 2022-04-20 14:36:14 -07:00
Dockerfile.dev Remove Hugo version from builds (use latest). (#19) 2020-06-13 19:24:09 +00:00
Dockerfile.prod Use webserver image (fix port). 2022-03-13 20:50:51 -07:00
README.md Use tag for images. 2022-04-20 14:37:43 -07:00
config.toml BlogPost_BooleanNames (#22) 2020-07-30 22:44:24 +00:00

README.md

Simple Systems Website

Built using Hugo

Local development

hugo server

Development can also be run using Docker:

docker build --no-cache -f Dockerfile.dev -t website-fe . && \
docker run -it -p 1313:1313 --mount source=$(pwd),target=/src,type=bind --rm website-fe

Production

To build the production site, run the following command:

hugo --minify

To build the Dockerfile, run this command:

TAG="$(date -u +%Y-%m-%d_%H%M%S)" ; docker build --no-cache -f Dockerfile.prod -t docker.simplesystems.tech/simplesystems/website:$TAG . && docker push docker.simplesystems.tech/simplesystems/website:$TAG

The resources will be stored in the ./public directory.

Managing Job Posts

  • To add a job post, create the markdown file in content/jobs.
  • To remove a job post, remove its markdown file from content/jobs.

Managing Blog Posts

  • To add a blog post, create the markdown file in content/blog.
  • To remove a blog post, remove its markdown file from content/blog.