Brazil Blog

CI

Logo

A blog about our trip to Brazil in October 2024. This project runs on Django + Wagtail in a Docker container. The styling is done with Tailwind CSS.

Currently hosted at https://tropischeverrassing.fun.

Getting Started

Pre-requisites

Docker

First, create a .env file, based on the .env.example file:

cp .env.example .env

To run the project:

docker compose up -d

# Or, to rebuild the image:
docker compose up -d --build

The project will be available at http://localhost:8000.

The admin panel will be available at http://localhost:8000/admin.

To stop the project:

docker compose down

Tailwind CSS

To install dependencies:

bun install

To run:

bun tailwindcss:watch

To build:

bun tailwindcss:build

This project was created using bun init in bun v1.1.0. Bun is a fast all-in-one JavaScript runtime.