Re: improvement for the front end

2022-03-16 Thread Denis Urman
Dude I saw this post on Reddit today! When I checked GitHub I saw I was already following you and I was like wait what? And I remembered our conversation. Great job 👏 I read through the docs earlier. Very impressive. I dont work with Python at the moment so I can’t use it but I’m going to follow

Re: Model Generation for CSV, XLS Files

2020-11-28 Thread Denis Urman
The CSV module in the Python standard library has solved the issues mentioned in this thread vis a vis format. No need to reinvent the wheel. There are options and flags for field names and delimiters. Before relying on a third party depencency, one must demonstrate the necessity. What edge cases d

Re: command for stopping server

2020-09-07 Thread Denis Urman
The canonical way to run a Django server is to link it up to a WSGI (uWSGI) or gunicorn, then run Apache or Nginx on top of that. These latter two things are typically handled through systemd. Some people use Docker or Supervisor, but that might be a lot for you to learn right now. Gunicorn & Nginx

Re: Proposal - Warn user when creating or applying a delete migration?

2020-06-12 Thread Denis Urman
It's easy enough to read the output before you migrate. It's pretty darn hard to accidentally delete an entire Model. It'd have to be a new or obscure Model with no references in your Views, no ForeignKeys to it, etc etc. Deleting a Field accidentally on the other hand is pretty easy to do. I d