Example Project

You can use the following example project to get started with django-resume.

Set up the project

Clone the repository:

$ git clone git@github.com:ephes/django-resume.git

Set up the virtual environment:

$ cd django-resume
$ uv venv
$ uv sync

Run the example project:

$ just serve-example

This is shorthand for:

$ cd example
$ uv run python manage.py runserver

Log in via the admin interface:

Visit the list of example resumes:

The example project root URL http://localhost:8000/ redirects anonymous users to the admin login and authenticated users to the same resume list.

You can edit the example resumes either via the django admin interface or via the inline editing feature by clicking on the “Edit” button.

The example project demonstrates built-in and filesystem-based custom plugins.