Re: Hosting Recommendations?

2024-12-05 Thread Luciano Martins (luxu)
vercel is cool! Em quarta-feira, 4 de dezembro de 2024 às 23:38:29 UTC-3, Pradeep Chowdhary escreveu: > Digital ocean is good for easy deployment. If you want it robust, fast and > scalable you can consider AWS it is free for first year for small e2 > instance. I have tried it following Corey S

Re: Meta indexes and makemigrations

2024-12-05 Thread RANGA BHARATH JINKA
Ok. Is it working now On Thu, 5 Dec, 2024, 8:10 pm mccc, wrote: > Turns out there was a tiny class Meta at the very bottom of the very big > model, obfuscating mine defining the index.. Something not even ChatGPT > could imagine! > > On Thursday, December 5, 2024 at 12:31:01 PM UTC+1 RANGA BHARA

Re: Help on Email Sending with the Gmail SMTP server.

2024-12-05 Thread Luis Zárate
Do you configure the "*Less secure app access*" in your gmail account? https://mailtrap.io/blog/gmail-smtp/ El jue, 5 dic 2024 a las 9:52, George Joseph () escribió: > Hi, Try by creating app password from your g-suite. Thanks and regards. > > > On Thursday, October 31, 2024 at 6:48:46 PM UTC+5

Re: Django project

2024-12-05 Thread Ismail Kabir
Interested to contribute on your project. Ismail kabir On Wed, 4 Dec 2024 at 21:06 Abba Respect wrote: > Looking for volunteers to contribute on my project. Mail me in private > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubs

Re: Looking for developers

2024-12-05 Thread Ntege Daniel
I can also be of help On Thu, Dec 5, 2024, 7:49 AM Onjomba Felix wrote: > Hello, I can do this reach me through onjombafel...@gmail.com > > On Wed, Dec 4, 2024, 11:06 PM Adan Popov wrote: > >> I have some works to be done on the frontend for a project, but I'm not >> fluent in frontend librarie

Re: Help on Email Sending with the Gmail SMTP server.

2024-12-05 Thread George Joseph
Hi, Try by creating app password from your g-suite. Thanks and regards. On Thursday, October 31, 2024 at 6:48:46 PM UTC+5:30 ALINDA Fortunate wrote: > Hello Team, I am requesting for assistance on how to send email using > Django by the Gmail SMTP server, I have set up the app configured the

Re: Looking for developers

2024-12-05 Thread Otecina
Take a look at this simple project I made in Django 👇👇 django-crud-dh2q.onrender.com On Wed, Dec 4, 2024, 9:06 PM Adan Popov wrote: > I have some works to be done on the frontend for a project, but I'm not > fluent in frontend libraries or frameworks. > Please ping me if you can do some fronten

Re: Meta indexes and makemigrations

2024-12-05 Thread mccc
Turns out there was a tiny class Meta at the very bottom of the very big model, obfuscating mine defining the index.. Something not even ChatGPT could imagine! On Thursday, December 5, 2024 at 12:31:01 PM UTC+1 RANGA BHARATH JINKA wrote: > Hi, > > The issue is that partial indexes with conditi

Re: Meta indexes and makemigrations

2024-12-05 Thread RANGA BHARATH JINKA
Hi, The issue is that partial indexes with conditions (condition attribute in models.Index) were introduced in *Django 3.2*, but they rely on the database backend's ability to support them. PostgreSQL does support partial indexes, so that part should be fine. However, your problem likely stems fro

Re: Looking for developers

2024-12-05 Thread 'Steven Mapes' via Django users
Feel free to drop me a message to st...@mapestech.co.uk On Wednesday, 4 December 2024 at 05:20:33 UTC Adan Popov wrote: > I have some works to be done on the frontend for a project, but I'm not > fluent in frontend libraries or frameworks. > Please ping me if you can do some frontend works and a

ModelChoiceField user filter

2024-12-05 Thread Gabriel Soler
Hi wise Django fellows I have been trying to create a field that refers to a Foreign Key, which needs to be filtered by the user. I feel this should be something common, and I cannot find a way through it. I found a solution in a forum and stack overflow and a tutorial that uses the __init__ a

Meta indexes and makemigrations

2024-12-05 Thread mccc
Hello, We want to have a partial index (db backend is Postgres) on a datetimefield, so we added this code to the Meta class: class Episode(models.Model): channel_type = models.CharField(max_length=16, choices=CHANNEL_TYPES) last_seen_date = models.DateTimeField(auto_now_add=True) cla