The website of Café Centrale, an Italian bistro in Hamburg Ottensen. https://cafecentrale.com/
Find a file
Stefan Frede 4d75d7c97e
Some checks are pending
Deploy to GitHub Pages / deploy (push) Waiting to run
refactor(node): switch to vfox
2025-06-21 10:00:09 +02:00
.github/workflows refactor(deploy): update vite config 2025-04-20 17:04:44 +02:00
_dist refactor(docker): refactor asset pipeline 2025-04-20 12:13:49 +02:00
src Update src/_data/site.json (via Pages CMS) 2025-05-21 21:07:33 +02:00
.dockerignore refactor(docker): refactor asset pipeline 2025-04-20 12:13:49 +02:00
.editorconfig first commit 2025-04-16 21:12:58 +02:00
.git-branches.toml first commit 2025-04-16 21:12:58 +02:00
.gitignore first commit 2025-04-16 21:12:58 +02:00
.nojekyll chor(github): disable jekyll 2025-04-20 13:04:42 +02:00
.pages.yml Update .pages.yml (via Pages CMS) 2025-05-21 21:07:33 +02:00
.tool-versions refactor(node): switch to vfox 2025-06-21 10:00:09 +02:00
biome.json first commit 2025-04-16 21:12:58 +02:00
docker-compose.yml refactor(docker): refactor asset pipeline 2025-04-20 12:13:49 +02:00
Dockerfile refactor(docker): refactor asset pipeline 2025-04-20 12:13:49 +02:00
eleventy.config.js refactor(menus): add menus via global data 2025-05-11 21:26:05 +02:00
justfile feat(menus): implement menus 2025-05-10 20:14:55 +02:00
LICENSE first commit 2025-04-16 21:12:58 +02:00
package-lock.json chore(node): update outdated 2025-05-13 21:16:10 +02:00
package.json refactor(node): switch to vfox 2025-06-21 10:00:09 +02:00
README.md refactor(docker): refactor asset pipeline 2025-04-20 12:13:49 +02:00

📦 doty

A containerised minimal starter kit for Eleventy with components.

Install Dependencies

Eleventy is served over HTTPS and you will need to create a valid certificate for this.

Install mkcert on your system

The installation instructions for macOS, Windows and Linux can be found in the mkcert Github repository.

Create a valid certificate

Create a folder for the certificate in your project folder and cd into it

mkdir _mkcert && cd _mkcert

Create the certificate and cd back to root:

mkcert localhost && cd ..

Install just

For convenience, the project uses just to run Docker commands.

Follow the installation instructions to get it up and running on your system.

Install Docker

Finally, you'll need Docker, and if you don't already have it running on your system, the Docker manuals should get you started.

That's it!

Start the project:

just start

Open https://localhost:8080 in your browser.

Stop the project:

just stop

Build the project:

just build

You will find the build output in the _dist folder.