Note: The project is built with
Python 3.9.1, but should work with any Python3 version.
This is a companion project to the "Build Your Personal Diary With Django" tutorial on Real Python.
Visit the article to follow along or download the content of source_code_final folder from this repository.
Type the following commands into a terminal to create and activate a virtual environment and install the requirements:
$ python -m venv venv
$ source venv/bin/activate
$ python -m pip install -r requirements.txtThen run the database migrations and create a superuser:
$ python manage.py migrate
$ python manage.py createsuperuserFinally, run the local Django development server:
$ python manage.py runserverDistributed under the MIT license.