Metadata-Version: 2.3
Name: jasonstudio
Version: 0.1.2
Summary: Add your description here
Requires-Dist: django>=6.0.6
Requires-Dist: django-environ>=0.13.0
Requires-Dist: django-fernet-encrypted-fields>=0.4.0
Requires-Dist: django-htmx>=1.27.0
Requires-Dist: django-storages>=1.14.6
Requires-Dist: pillow>=12.2.0
Requires-Dist: psycopg>=3.3.4
Requires-Dist: furo>=2025.12.19 ; extra == 'docs'
Requires-Dist: myst-parser>=5.1.0 ; extra == 'docs'
Requires-Dist: sphinx>=9.1.0 ; extra == 'docs'
Requires-Dist: sphinx-design>=0.7.0 ; extra == 'docs'
Requires-Dist: sphinx-inline-tabs>=2025.12.21.14 ; extra == 'docs'
Requires-Dist: mysqlclient>=2.2 ; extra == 'mysql'
Requires-Python: >=3.14
Project-URL: Changelog, https://github.com/erikvw/jasonstudio/blob/main/CHANGES
Project-URL: Documentation, https://jasonstudio.readthedocs.io
Project-URL: Homepage, https://github.com/erikvw/jasonstudio
Project-URL: Repository, https://github.com/erikvw/jasonstudio.git
Provides-Extra: docs
Provides-Extra: mysql
Description-Content-Type: text/markdown

[![pypi](https://img.shields.io/pypi/v/jasonstudio.svg)](https://pypi.python.org/pypi/jasonstudio)
[![downloads](https://img.shields.io/pypi/dm/jasonstudio)](https://pypi.python.org/pypi/jasonstudio)
[![actions](https://github.com/erikvw/jasonstudio/actions/workflows/ci.yml/badge.svg)](https://github.com/erikvw/jasonstudio/actions/workflows/ci.yml)
[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
[![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)

# jasonstudio

A simple photography studio management application built with Django.

Documentation: [jasonstudio.readthedocs.io](https://jasonstudio.readthedocs.io)

## Quickstart

```bash
git clone https://github.com/erikvw/jasonstudio.git
cd jasonstudio
uv sync --dev
cp .env.example .env
# Edit .env — set DJANGO_SECRET_KEY and DJANGO_SALT_KEY
uv run python manage.py migrate
uv run python manage.py createsuperuser
uv run python manage.py runserver
```

## Running tests

```bash
uv run --dev pytest
```
