https://github.com/joeriddles/test_django_stubs
Playground for Django + Type Hints
https://github.com/joeriddles/test_django_stubs
Last synced: over 1 year ago
JSON representation
Playground for Django + Type Hints
- Host: GitHub
- URL: https://github.com/joeriddles/test_django_stubs
- Owner: joeriddles
- Created: 2023-03-14T21:42:22.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-14T21:47:37.000Z (over 3 years ago)
- Last Synced: 2025-03-26T02:45:46.481Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django + Type Hints
A playground for Django + Type Hints
See:
- https://github.com/typeddjango/django-stubs
- https://github.com/microsoft/pylance-release/issues/14
## Getting Started
```shell
# Clone repo
git clone https://github.com/joeriddles/test_django_stubs.git
# Create virtual environment
cd test_django_stubs
python -m venv .venv
source .venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Run migrations
cd test_stubs
python manage.py migrate
# Start Django server
python manage.py runserver
```