Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
Update the Django version to 4.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sabaimran committed Jul 19, 2023
1 parent 2adec2d commit e474c68
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ __pycache__/
staticfiles/
profile/
*.log
*.pid
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,13 @@ createuser -s postgres

### Start the service
```bash
python manage.py runserver 0.0.0.0:5000
gunicorn -c config/gunicorn/dev.py
```

### Kill the service
If you started the process in daemon mode, you can get the pid in the `.pid` file under `config/gunicorn`. Then run:
```bash
kill -9 <pid>
```

## Build Docker Image
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
asgiref==3.7.2
Django==4.2.2
django>=4.2.3
django-cors-headers==4.0.0
djangorestframework==3.14.0
psycopg2-binary==2.9.6
Expand Down

0 comments on commit e474c68

Please sign in to comment.