Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.

Commit 41f8a1d

Browse files
authored
Update readme
1 parent e930916 commit 41f8a1d

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

readme.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,21 @@ With docker support.
2828

2929
```bash
3030
cp .env.example .env
31-
pip3 install virtualenv && \
31+
pip install virtualenv && \
3232
virtualenv env && \
3333
source env/bin/activate
3434
```
3535

3636
## Usage
3737

3838
```bash
39-
# alias py3="python3"
40-
py3 manage.py runserver 3000
39+
# alias py="python3"
40+
py manage.py runserver 3000
4141
# http://localhost:3000
4242
```
4343

44+
If you still need help installing and running the app check out the readme at https://github.com/kkamara/python-react-boilerplate which is the base system for this python-selenium app.
45+
4446
## Using Docker?
4547

4648
```bash
@@ -53,13 +55,13 @@ compose up
5355
## iPython Django Shell
5456

5557
```bash
56-
py3 manage.py shell -i ipython
58+
py manage.py shell -i ipython
5759
```
5860

5961
## API
6062

6163
```bash
62-
py3 manage.py show_urls
64+
py manage.py show_urls
6365
```
6466

6567
View the api collection [here](https://documenter.getpostman.com/view/17125932/UVyxQYrt).
@@ -71,7 +73,7 @@ Admin creds are set in [./compose/local/django/start](https://raw.githubusercont
7173
```bash
7274
export DJANGO_SUPERUSER_PASSWORD=secret
7375

74-
py3 manage.py createsuperuser \
76+
py manage.py createsuperuser \
7577
--username admin_user \
7678
--email admin@django-app.com \
7779
--no-input
@@ -80,7 +82,7 @@ py3 manage.py createsuperuser \
8082
## Cache react app & view templates <a name="cache-templates"></a>
8183

8284
```bash
83-
py3 manage.py collectstatic
85+
py manage.py collectstatic
8486
```
8587

8688
## Mail Server

0 commit comments

Comments
 (0)