This project follows the Python Crash Course book, chapter 18. Getting Started with Django
learning_log$ python -m venv ll_env
learning_log$ source ll_env/bin/activate (ll_env)learning_log
(ll_env)learning_log$ deactivate
pip install django
Installing collected packages: sqlparse, asgiref, django Successfully installed asgiref-3.8.1 django-5.0.7 sqlparse-0.5.0
(ll_env)learning_log$ django-admin startproject learning_log .
(ll_env)learning_log$ python manage.py migrate
python manage.py runserver
Watching for file changes with StatReloader Performing system checks...
System check identified no issues (0 silenced). July 15, 2024 - 05:58:56 Django version 5.0.7, using settings 'learning_log.settings' Starting development server at http://127.0.0.1:8000/ Quit the server with CONTROL-C.
[15/Jul/2024 05:59:01] "GET / HTTP/1.1" 200 10629 Not Found: /favicon.ico [15/Jul/2024 05:59:01] "GET /favicon.ico HTTP/1.1" 404 2116
(ll_env)learning_log$ python manage.py startapp learning_logs
NSTALLED_APPS = [ 'learning_logs', ... ]
python manage.py makemigrations learning_logs
python manage.py migrate
python manage.py createsuperuser
ll_admin
password :
update admin.py file
TO BE CONTINUED ON PAGE 389



