Metadata-Version: 2.1
Name: django-nutrition
Version: 0.3.0
Summary: A Django app to track meals and calories.
Author-email: Erik Reid <noreply@no.domain>
Project-URL: Homepage, https://github.com/susrik/django-nutrition
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Development Status :: 4 - Beta
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: django>=5.1
Requires-Dist: djangorestframework

# django-nutrition

django-nutrition is a Django app to track calories

## Quick start

1. Add "nutrition" to your INSTALLED_APPS setting like this:
   ```python
   INSTALLED_APPS = [
       ...,
       "django_nutrition",
   ]
   ```

2. Include the nutrition URLconf in your project urls.py like this
   ```python
   path("nutrition/", include("django_nutrition.urls")),
   ```
3. Run `python manage.py migrate` to create the models.

4. Start the development server and create one or more users.

5. Visit the `/nutrition/` URL to manage nutrition information.

## Dev Notes

to update the style bundle, from within the `django_nutrition` directory:
```bash
npm install
npm run build:css
```

then commit `django_nutrition/state/nutrition/styles.css`
