https://github.com/django/birthday20
Static website for the Django 20 years birthday home [unreleased]
https://github.com/django/birthday20
Last synced: 11 months ago
JSON representation
Static website for the Django 20 years birthday home [unreleased]
- Host: GitHub
- URL: https://github.com/django/birthday20
- Owner: django
- License: bsd-3-clause
- Created: 2025-06-28T14:31:01.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-06-28T14:31:46.000Z (12 months ago)
- Last Synced: 2025-07-04T00:15:14.583Z (12 months ago)
- Language: HTML
- Size: 162 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django-birthday20
Static site for the Django birthday website
This is a [Hugo](https://gohugo.io/) project.
Running with Docker
-------------------
In `docker-compose.yml`, we have specified a `serve` target which you can run locally like this:
```bash
docker compose run --rm -u `id -u` --service-ports serve
```
Running without Docker
----------------------
Go to [Hugo Github release](https://github.com/gohugoio/hugo/releases)
and fetch the latest package for **hugo\_extended** for your system.
We want to align with the latest version always. If it doesn't work,
file an issue!
Example recipe for Ubuntu/Debian:
```bash
# Fetch .deb package from GitHub
wget https://github.com/gohugoio/hugo/releases/download/v0.147.9/hugo_extended_0.147.9_linux-amd64.deb -O hugo_extended.deb
# Install package
sudo apt install ./hugo_extended.deb
# Now from inside the cloned copy of this repository, run the Hugo development server:
hugo server
```