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
{{ message }}
This repository was archived by the owner on Oct 2, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: readme.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,19 +28,21 @@ With docker support.
28
28
29
29
```bash
30
30
cp .env.example .env
31
-
pip3 install virtualenv && \
31
+
pip install virtualenv && \
32
32
virtualenv env && \
33
33
source env/bin/activate
34
34
```
35
35
36
36
## Usage
37
37
38
38
```bash
39
-
# alias py3="python3"
40
-
py3 manage.py runserver 3000
39
+
# alias py="python3"
40
+
py manage.py runserver 3000
41
41
# http://localhost:3000
42
42
```
43
43
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
+
44
46
## Using Docker?
45
47
46
48
```bash
@@ -53,13 +55,13 @@ compose up
53
55
## iPython Django Shell
54
56
55
57
```bash
56
-
py3 manage.py shell -i ipython
58
+
py manage.py shell -i ipython
57
59
```
58
60
59
61
## API
60
62
61
63
```bash
62
-
py3 manage.py show_urls
64
+
py manage.py show_urls
63
65
```
64
66
65
67
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
0 commit comments