You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Note:** The project is built with `Python 3.9.1`, but should work with any Python3 version.
4
-
5
-
## About this repository
1
+
# Build Your Personal Diary With Django
6
2
7
3
This is a companion project to the ["Build Your Personal Diary With Django"](https://realpython.com/django-diary-project-python/) tutorial on Real Python.
8
4
Visit the article to follow along or download the content of `source_code_final` folder from this repository.
9
5
10
-
## How To Run `django-diary`
11
6
12
7
Type the following commands into a terminal to create and activate a virtual environment and install the requirements:
13
8
@@ -16,8 +11,7 @@ $ python -m venv venv
16
11
$ source venv/bin/activate
17
12
$ python -m pip install -r requirements.txt
18
13
```
19
-
20
-
Then run the database migrations and create a superuser:
14
+
Then you can navigate into a step folder, run the database migrations, and create a superuser:
21
15
22
16
```sh
23
17
$ python manage.py migrate
@@ -30,6 +24,3 @@ Finally, run the local Django development server:
0 commit comments