DEV Community

Discussion on: How to build production-ready application with Django and PostgreSQL

Collapse
 
onlinejudge95 profile image
onlinejudge95

Not what I would call a production-ready setting. You are using psycopg2-binary in production, rather you should build psycopg2 from source and avoid using any binaries to go in production.

psycopg.org/docs/install.html#bina...

Collapse
 
xarala221 profile image
Ousseynou Diop

Thank you for your thought, this adds real value to the article.