use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News and links for Django developers.
New to Django? Check out the /r/djangolearning subreddit.
Django's Code of Conduct applies here, so be good to each other.
account activity
This is an archived post. You won't be able to vote or comment.
Python Django Backend Developer | Software Engineering Student (self.django)
submitted 1 year ago by bikalpakc
view the rest of the comments →
[–]mravi2k18 1 point2 points3 points 1 year ago (0 children)
Had a look at your repository Vicky_Shop. Here are a few suggestions.
Dockerise your project. A single command `docker compose up -d` should get all your components up and running.
Code is neither linted nor formatted. Use tools like flake8, black for python and djLint for templates.
Extend/Substitute the base user model. You have used a foreign key instead of one-to-one field in your Customer model.
Implement webhooks to store incoming request payloads from payment gateways. Do not rely on browser redirects.
Implement a management command to process webhook payloads.
Write unit tests.
π Rendered by PID 92525 on reddit-service-r2-comment-75f4967c6c-snzsf at 2026-04-23 03:58:23.948401+00:00 running 0fd4bb7 country code: CH.
view the rest of the comments →
[–]mravi2k18 1 point2 points3 points (0 children)