The purpose of this package is to help people get started quickly on a new Django project based on my own most common starting requirements:
- Targeted for Single-Page Applications with a React Frontend in mind.
- For use with the Django REST API Framework.
- Basic User Accounts support.
Much of the basic template codes for the above functionality are derived and distilled from the YouTube course content generously made available by Coding For Entrepreneurs.
- Video link: https://youtu.be/f1R_bykXHGE.
- GitHub Repo of their course code: https://github.com/codingforentrepreneurs/Tweetme-2.
- Python >=3.9
- Pipenv >=2020.8.13
- Django == 3.2.15 (LTS)
- ./setup.sh project target-folder
- The script will request a superuser name, email, and password.
- Navigate to target-folder.
- pipenv shell
- python manage.py runserver
- browse to 127.0.0.1:8000
See docs/Release.md.