Metadata-Version: 2.1
Name: photodb
Version: 0.0.0
Summary: App for cataloguing vintage cameras, lenses, films, negatives & prints
Home-page: https://github.com/djjudas21/photodb-django
Author: Jonathan Gazeley
Author-email: photodb@jonathangazeley.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: Django (==2.2.4)
Requires-Dist: pytz (==2019.2)
Requires-Dist: sqlparse (==0.3.0)
Requires-Dist: django-admin-tools (==0.8.1)
Requires-Dist: django-fluent-dashboard (==1.0.1)
Requires-Dist: django-money (==0.15)
Requires-Dist: django-choices (==1.7.0)
Requires-Dist: django-favicon (==0.1.3)

# PhotoDB

PhotoDB is an app for film photography that can be used to track cameras, lenses, accessories, films, negatives and prints, to fully
catalogue a collection of photographic equipment as well as the pictures that are made with them. Read the [Concepts](docs/CONCEPTS.md)
section for full details on the capabilities of PhotoDB.

## Installing PhotoDB

At the moment, PhotoDB is not packaged for production use. To install it in development mode, clone this repo and run:

```sh
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
```

## Configuring PhotoDB

PhotoDB will run out of the box with no additional configuration, by creating an Sqlite database in its own directory.

## Running PhotoDB

At the moment, PhotoDB is not packaged for production use. To run it in development mode, execute:

```sh
python manage.py runserver
```

and navigate to [http://localhost:8000](http://localhost:8000)

## See also

* [Concepts](docs/CONCEPTS.md)
* [Contributing](docs/CONTRIBUTING.md)

