> ## Documentation Index
> Fetch the complete documentation index at: https://buttercms.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Python starter project

> Get up and running with Python and ButterCMS in under two minutes, with a starter that showcases Pages, Collections, and a Blog engine.

<Info>
  **One-Click Deploy**: Skip local setup and [deploy to Vercel instantly](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FButterCMS%2Fdjango-starter-buttercms\&env=BUTTER_CMS_API_KEY\&envDescription=Your%20ButterCMS%20API%20Token\&envLink=https%3A%2F%2Fbuttercms.com%2Fsettings%2F).
</Info>

## Quick start

Install dependencies and run setup commands.

```bash theme={null}
$ git clone https://github.com/ButterCMS/django-starter-buttercms.git
$ cd django-starter-buttercms
$ python3 -m venv butterenv && source butterenv/bin/activate
$ pip install --upgrade pip && pip install -r requirements.txt
```

Add your API token as an environment variable and run development server

```bash theme={null}
$ echo 'BUTTERCMS_API_TOKEN=your_token' >> .env
$ python manage.py runserver
```

**Local Development**: [http://localhost:8000/](http://localhost:8000/)

**GitHub Repository**: [https://github.com/ButterCMS/django-starter-buttercms](https://github.com/ButterCMS/django-starter-buttercms)

## What's included

| Feature                | Description                                                   |
| ---------------------- | ------------------------------------------------------------- |
| **Pages & Page Types** | Pre-built page templates with drag-and-drop schema definition |
| **Components**         | Modular content blocks for dynamic landing pages              |
| **Collections**        | Structured data for navigation, testimonials, FAQs            |
| **Blog Engine**        | Full blog with posts, categories, tags, and search            |
| **Media CDN**          | Automatic image optimization via Filestack                    |

## Deploy options

<CardGroup cols={1}>
  <Card title="Deploy to Heroku" icon="cloud" href="https://heroku.com/deploy?template=https://github.com/ButterCMS/django-starter-buttercms">
    Deploy to Heroku with environment configuration
  </Card>
</CardGroup>

## Resources

<CardGroup cols={2}>
  <Card title="GitHub Repository" icon="github" href="https://github.com/ButterCMS/django-starter-buttercms">
    View source code and contribute
  </Card>

  <Card title="Django Guide" icon="book" href="../../frameworks/non-javascript-frameworks/django">
    Framework integration guide
  </Card>
</CardGroup>

## Additional reading

* [How Wedding Together Added a Blog to Their Django App in 5 Minutes](https://buttercms.com/blog/options-for-adding-a-blog-to-python-application/)
* [Load Testing Round-Up: 8 Tools to Strengthen Your Stack](https://buttercms.com/blog/load-testing-round-up-8-tools-you-can-use-to-strengthen-your-stack/)
* [ButterCMS SDKs: A Complete Overview](https://buttercms.com/blog/buttercms-sdks-complete-overview/)

## Next steps

<CardGroup cols={2}>
  <Card title="Core Concepts" icon="book" href="../../core-concepts/content-types/pages">
    Learn about Pages, Collections, and Components
  </Card>

  <Card title="API Reference" icon="code" href="../../api">
    Explore the full ButterCMS API
  </Card>
</CardGroup>
