refactor: docs and licenses

This commit is contained in:
kellervater
2025-04-09 22:35:16 +02:00
parent bee5fd99e7
commit 04f76ace15
8 changed files with 466 additions and 434 deletions

9
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM mcr.microsoft.com/vscode/devcontainers/base:ubuntu
# Install Ruby and dependencies
RUN apt-get update && \
apt-get install -y ruby-full build-essential zlib1g-dev nodejs && \
gem install bundler jekyll
# Clean up
RUN apt-get clean && rm -rf /var/lib/apt/lists/*

View File

@@ -0,0 +1,16 @@
{
"name": "Jekyll Dev Container",
"build": {
"dockerfile": "Dockerfile"
},
"forwardPorts": [4000],
"postCreateCommand": "bundle install || true",
"customizations": {
"vscode": {
"extensions": [
"rebornix.Ruby"
]
}
}
}