Go to file
CTome 78807c079a
fix metadata
2022-10-29 12:03:52 +01:00
.github
.idea/.idea.crimsontome-blog.dir/.idea
_data fix metadata 2022-10-29 12:03:52 +01:00
_includes
about Revert "style: prettier formatting" 2022-10-24 21:03:42 +01:00
css
drafts
feed Revert "chore: add description field to atom feed" 2022-10-24 19:45:16 +01:00
img chore: update about page with cv 2022-10-20 22:53:37 +01:00
posts Revert "chore: add test post for cohost bot" 2022-10-24 21:03:58 +01:00
stack feat: add stack page data 2022-10-26 23:21:06 +01:00
.editorconfig
.eleventy.js
.eleventyignore
.gitignore
.prettierignore
.prettierrc.json
404.md
CONTRIBUTING.md
Dockerfile
LICENSE
README.md
archive.njk
index.njk feat: add stack page data 2022-10-26 23:21:06 +01:00
package.json fix: fix hullblogs integration? 2022-10-29 11:47:21 +01:00
page-list.njk
robots.txt
sitemap.xml.njk
tags-list.njk
tags.njk

README.md

CrimsonTome's Blog

My personal blog documenting my journey into open-source development alongside other things.
Created with 11ty, hosted in a docker container on my VPS

CI Publish Docker image Repo Size Commit Activity /month Last git commit code style: prettier

Development

  • clone the repo
  • run npm i to install dependencies
  • npm run serve
  • make some changes and watch them update in the browser

Building

Node

  • run npm run build

Docker

The site can also be built and ran inside a docker container when you are in the base of the repo:

  • sudo docker build -t crimsontome-blog .
  • sudo docker run -itd -p unused-port-number:80 crimsontome-blog
  • visit localhost:port or ip:port if you are hosting on a VPS and the site should be available to view

Dockerfile

FROM node:18-alpine3.15 as npmpackages
WORKDIR /app
COPY package.json .
RUN npm install

FROM node:18-alpine3.15 as builder
WORKDIR /app
COPY --from=npmpackages /app /app
COPY . .
RUN npm run build

FROM nginx:1.17.10-alpine
RUN rm -r /usr/share/nginx/html/
COPY --from=builder /app/_site/ /usr/share/nginx/html/

Ouroboros

Using a tool like Ouroboros, you can automatically update containers without the need for restarts. This site is setup with that so you can (instead of building it yourself like above) with sudo docker run -d -p unused-port-number:80 crimsontome427:crimsontome-blog

Contributing

See CONTRIBUTING.md for information on adding to this repository.

License

crimsontome-blog is released under the MIT License. The full license text is included in the LICENSE file in this repository. Tldr legal have a great summary of the license if you're interested.