Opinions on a few choices I made with my app

Hi Samul-1,

Thanks for asking these questions. They are difficult questions to answer because they depend on your situation, funding, availability, and goals. I might suggest reading some other materials to see how others reason about things. Some resources are:

Looking through your project, I would consider the question, how do I onboard another engineer? I see some tests, but you’re definitely lacking in that area. If this were to expand as an actual product and you bring others on, tests go a long way in preventing bugs as new devs get acquainted with the project. It may also reveal areas that you should refactor to make things easier to test (and potentially reason about).

Some other things to check out:

  • Deployment checklist, specifically the HTTPS section.
  • Try creating large quantities of fake data to see if your application or admin breaks anywhere. This can help you find areas that may need optimization as your userbase and content grows. You can use the Django Debug Toolbar to identify problematic SQL queries, though we’re still working on the ASGI compatibility.

Best of luck and good work so far!

-Tim

2 Likes