Files
twitch-drop-notifier/README.md
2025-04-13 14:26:06 +02:00

22 lines
542 B
Markdown

# twitch-drop-notifier
Get notified when a new drop is available on Twitch
## Development
- [Python 3.13](https://www.python.org/downloads/) is required to run this project.
```bash
uv sync
# Run the following to get passwords for the .env file.
uv run python -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())'
# Commands
uv run python manage.py migrate
uv run python manage.py createcachetable
uv run python manage.py createsuperuser
uv run python manage.py runserver
uv run pytest
```