|
@@ -72,34 +72,33 @@ When you have completed the goals then you can open a Pull Request to this main
|
|
|
This application is compatible with Python 3.10 and later. You can set up a virtual environment with:
|
|
|
|
|
|
```shell
|
|
|
-$ python3 -m venv venv
|
|
|
+$ python3 -m venv --upgrade-deps venv
|
|
|
$ source venv/bin/activate
|
|
|
```
|
|
|
|
|
|
### Install dependencies
|
|
|
|
|
|
```shell
|
|
|
-$ pip install --upgrade pip wheel
|
|
|
-$ pip install --requirement=requirements.txt
|
|
|
+$ python3 -m pip install --requirement=requirements.txt
|
|
|
```
|
|
|
|
|
|
### Initialize the development database
|
|
|
|
|
|
```shell
|
|
|
-$ python manage.py migrate
|
|
|
-$ python manage.py loaddata initial_data
|
|
|
+$ python3 manage.py migrate
|
|
|
+$ python3 manage.py loaddata initial_data
|
|
|
```
|
|
|
|
|
|
### Add a development superuser
|
|
|
|
|
|
```shell
|
|
|
-$ python manage.py createsuperuser
|
|
|
+$ python3 manage.py createsuperuser
|
|
|
```
|
|
|
|
|
|
### Run the development server
|
|
|
|
|
|
```shell
|
|
|
-$ python manage.py runserver
|
|
|
+$ python3 manage.py runserver
|
|
|
```
|
|
|
|
|
|
Log into the Django admin with your superuser account at:
|