This is the website of Café Centrale, an Italian bistro in Hamburg Ottensen. https://www.cafecentrale.com/
  • JavaScript 98.8%
  • CSS 0.8%
  • Nunjucks 0.4%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-09-02 11:20:31 +02:00
src Update Daily Special “recipe-063” 2026-09-02 11:20:31 +02:00
wp-recipes-transform refactore(recipes): filter for empty items in transform 2026-02-01 19:08:17 +01:00
.editorconfig first commit 2025-04-16 21:12:58 +02:00
.env.example deployment: fix script 2026-08-27 17:28:55 +02:00
.git-town.toml fix(git town): change origin hostname 2025-12-21 17:45:09 +01:00
.gitignore feat(recipes): setup transform 2026-02-01 13:41:00 +01:00
biome.json biome: add code linting & lint code 2026-08-17 16:10:23 +02:00
deploy.sh deployment: adjust deploy script 2026-09-01 15:56:28 +02:00
eleventy.config.js chore(11ty): remove cruft from config 2026-02-06 20:26:34 +01:00
justfile deployment: update process 2026-08-26 16:18:30 +02:00
LICENSE first commit 2025-04-16 21:12:58 +02:00
package-lock.json node: update outdated 2026-08-17 15:29:08 +02:00
package.json node: update outdated 2026-08-17 15:29:08 +02:00
README.md chore(readme): update readme 2026-01-07 21:10:12 +01:00

📦 Café Centrale

The website of Café Centrale, an Italian bistro in Hamburg Ottensen.

Install Dependencies

Make sure to install the dependencies:

npm install

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.

Deploy prerequisites

cp .env.example .env

Open .env and fill in the missing values for the environment variables.

That's it!

Start the project:

just start

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

Start the project in debug mode:

just debug

Start the project in benchmark mode:

just benchmark

Build the project:

just build

You will find the build output in the _site folder.

Deploy the project:

just deploy