Re: Getting Django Channels working with NewRelic

2023-11-17 Thread Lutaaya Jamil
use dramatiq not celery, instrumenting dramatiq was easy. Channels is a > different beast, clearly a pattern NewRelic doesn't recognize out of the > box. > > On Friday, November 17, 2023 at 12:40:38 PM UTC-5 Lutaaya Jamil wrote: > >> I have never used that, hearing for the f

Re: Getting Django Channels working with NewRelic

2023-11-17 Thread Lutaaya Jamil
I have never used that, hearing for the first time though. Is doing the same as celery? I am interested in making it work with you, we might dive into it together, you never know...Adding a new skill is worth it On Friday, 17 November 2023 at 18:54:52 UTC+3 Tim Nelson wrote: > I am trying to get

Re: activate source my_env/bin/activate

2023-11-15 Thread Lutaaya Jamil
Do as Mr. Jung said, and ensure to be in the same folder where your virtual env is On Wednesday, 15 November 2023 at 18:34:04 UTC+3 Sebastian Jung wrote: > Linux is case sensitive... Try source > > william Kachuma schrieb am Mi., 15. Nov. 2023, 16:31: > >> good day >> >> i am experiencing probl

Re: New User of Django

2023-11-15 Thread Lutaaya Jamil
You have python? Google django, and follow the instructions or you can follow mosh here, I learnt from him though it was years back https://youtu.be/rHux0gMZ3Eg On Wednesday, 15 November 2023 at 18:32:39 UTC+3 Yonis Abdulkadir wrote: > I need you to give me an explanation about how i can instal

Re: Writing migrations to wrong database entirely

2023-11-14 Thread Lutaaya Jamil
I guessed that would be the issue as I normally run into it at times On Tuesday, 14 November 2023 at 18:56:02 UTC+3 David Crandell wrote: > Found the issue. I had a DATABASE_URL defined in my environment variables > for one of my projects and my other project was somehow using this even > thoug

Re: Writing migrations to wrong database entirely

2023-11-14 Thread Lutaaya Jamil
Are you using the database_url your environment variables? Maybe the file is same On Tuesday, 14 November 2023 at 17:14:22 UTC+3 David Crandell wrote: > > > Howdy, I have been working with Django for about three years now and have > developed

Re: Django Rest framework

2023-11-13 Thread Lutaaya Jamil
You can correct me if I am wrong, but there is something to do with Cross-Origin Resource Sharing (CORS) in Django which somehow is set to prevent unauthorized domains from accessing information from another domain. So, I suggest if that is the issue, follow the steps that start by installing