Re: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-19 Thread Theresa Taye
I am interested

On Sun, Feb 18, 2024, 5:48 PM SURAJ TIWARI  wrote:

>  Join Our Django WhatsApp Bulk Messaging Project!
>
>  Hello everyone,
>
> Are you looking for an exciting opportunity to gain hands-on experience in
> Django development? Do you want to work on a meaningful project that
> leverages WhatsApp for bulk messaging? We're thrilled to invite you to join
> our dynamic team!
>
>  Benefits:
>
>- Get hands-on experience working on a real-world Django project.
>- Learn how to leverage WhatsApp for bulk messaging, a valuable skill
>in today's digital landscape.
>- Opportunities for hybrid work, allowing flexibility in your schedule.
>- Collaborate with experienced developers and gain valuable mentorship.
>- Access to cutting-edge tools and technologies.
>
>  Opportunities Available:
>
>- Django developers
>- Frontend developers
>- UI/UX designers
>- Quality assurance testers
>
> 欄 How to Join: Simply reply to this message expressing your interest,
> and we'll provide you with all the necessary details to get started on our
> project.
>
> Let's work together to create something amazing and gain valuable
> experience along the way! ✨
>
> Best regards,
>
> Suraj Tiwari
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/e8a705fd-10d9-4c1a-b4ba-0a7b896dbfean%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfP0v9_mS%3DqLicTyf5Hu0K7%2BdJyPAyD_qsQzj%2BahrSSGDA%40mail.gmail.com.


Re: need help

2023-07-04 Thread Theresa Taye
Hello,

You see a Server error because Debug is set to False. To know what the
actual error is, turn it back to True. Then when you are done debugging you
can change that especially if you are pushing to production.

On Tue, 4 Jul 2023 at 16:21, Abdoulaye SENE 
wrote:

> thanks for the help. but after  writing ["*"] i see   Server Error (500)
>
> Le mardi 4 juillet 2023 à 14:46:01 UTC, ALBERT ASHABA AHEEBWA a écrit :
>
>> Sorry I meant turn
>> DEBUG = True
>>
>>
>>
>>
>> Best Regards,
>>
>> Albert Ashaba Aheebwa
>> +256 781 435857 <+256%20781%20435857>
>>
>> On Tue, 4 Jul 2023, 17:44 ALBERT ASHABA AHEEBWA, 
>> wrote:
>>
>>> Go to your settings.py and look for allowed_hosts and make it
>>> ALLOWED_HOSTS = ["*"]
>>>
>>> or better yet, if you are in development, turn
>>> DEBUG = False
>>>
>>>
>>>
>>> Best Regards,
>>>
>>> Albert Ashaba Aheebwa
>>> +256 781 435857 <+256%20781%20435857>
>>>
>>> On Tue, 4 Jul 2023, 17:38 Abdoulaye SENE, 
>>> wrote:
>>>
 hello,
 while programming, i see this problem : " CommandError: You must set
 settings.ALLOWED_HOSTS if DEBUG is False."
 i wonder if someone can help me to fix it.

 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/171c894c-5f04-445d-939f-c6c949caae35n%40googlegroups.com
 
 .

>>> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/82b9160b-6056-4cc6-9fa5-6d52de5512a1n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfMNWVA-_jm0eUiDGSL-1kQJvDsLnXGjZ870aivXFEDfCA%40mail.gmail.com.


looking for mobile developers

2021-07-04 Thread Theresa Taye
Hello guys,

I need flutter users for a project urgently if you are interested, please
contact me.

Best regards

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfMdOTe4NTJNONwZaD-U78wsQ%2BG4wU9W_gKFwRab1PuPVw%40mail.gmail.com.


Re: Upload images

2021-02-11 Thread Theresa Taye
What is the error message? Is it in your admin site you are getting issues
uploading images or when rendered in the template?

For me I use this in my model:
image = models.ImageField(null=True, blank=True, upload_to="images/")

the upload_to specifies wherein the static folder I want to upload the
images

On Thu, 11 Feb 2021 at 19:30, mtp...@gmail.com  wrote:

> Hello everyone,
>  I have implemented an endpoint to register an organization how do I make
> it posssible to upload the images considering the org model as shown below.
>
> ```
>
> class Organization(Group):
> email = models.EmailField(max_length=60, blank=False, null=False)
> admin = models.ManyToManyField(settings.AUTH_USER_MODEL)
> users = models.ManyToManyField(settings.AUTH_USER_MODEL,related_name
> ='org_users')
> is_active = models.BooleanField(default=False)
> short_name = models.CharField(max_length=200,blank=True)
> location = models.CharField(max_length=200,blank=True, null=True)
> tag_line = models.TextField(null=True,blank=True)
> company_phone =  models.CharField(max_length=15, blank=True, null
> =True)
> po_box = models.CharField(max_length=15, blank=True, null=True)
> first_logo = models.ImageField(null=True,blank=True)
> second_logo = models.ImageField(null=True,blank=True)
> third_logo = models.ImageField(null=True,blank=True)
> history = HistoricalRecords()
>
> ```
>
> I have implemented the following view but saving the images part is an
> issue:
>
> ```
> class OrganizationRegistration(generics.CreateAPIView):
> queryset = Organization.objects.all()
> permission_classes = (permissions.AllowAny,)
> serializer_class = OrgRegistrationSerializer
>
> """
> {
> "admin":{
> "username":"kapyj...@abyssmail.com",
> "first_name":"Cindy",
> "last_name":"Georgia",
> "password":"password",
> "email":"kapyj...@abyssmail.com"
> },
> "org":{
> "name":"ARIZONA LAW SOCIETY",
> "short_name":"ALS",
> "tag_line":"ALS",
> "email":"kapyj...@abyssmail.com",
> "company_phone": "+25475533222",
> "po_box": "200",
> "location":"NAKURU",
> "first_logo": "
> https://www.mintformations.co.uk/blog/wp-content/uploads/2020/05/shutterstock_583717939.jpg
> ",
> "second_logo": "
> https://www.mintformations.co.uk/blog/wp-content/uploads/2020/05/shutterstock_583717939.jpg
> ",
> "third_logo": "
> https://www.mintformations.co.uk/blog/wp-content/uploads/2020/05/shutterstock_583717939.jpg
> "
> }
> }
> """
>
> def post(self, request, format=None, *args, **kwargs):
> try:
> admins = Group.objects.get(name__iexact='admin')
> admin_role = Role.objects.get(name__iexact="admin")
>
> except:
> # The admin group is
> admins = Group.objects.create(name="admin")
>
> admin_role = Role.objects.create(name="admin")
>
> # Validate USer and Org
> if Organization.objects.filter(name__iexact
> =request.data['org']['name']).exists() is True:
>
> res = {"data": None, "msg":"Organization with that name already 
> registered","success": False}
> return Response(data=res,status=status.HTTP_400_BAD_REQUEST)
>
> if User.objects.filter(username__iexact
> =request.data['admin']['username']).exists() is True:
>
> res = {"data": None, "msg":"User with that name already 
> registered.","success": False}
> return Response(data=res,status=status.HTTP_400_BAD_REQUEST)
>
>
> try:
> admin = User.objects.create(
> username=request.data['admin']['username'],
> email=request.data['admin']['email'],
> first_name=request.data['admin']['first_name'],
> last_name=request.data['admin']['last_name'],
> )
>
> location_name = request.data['org']['location'].upper()
>
> location_obj, _  = Location.objects.get_or_create(name
> =location_name)
> area_name = location_obj.name
>
> # Create Random Password
> password = User.objects.make_random_password(length=10)
>
> admin.set_password(password)
> admin.save()
> admin.groups.add(admins)
> admin.roles.add(admin_role)
> except Exception as e:
> return Response(data={"msg":str
> (e),"success":False, "data": None},status=status.HTTP_400_BAD_REQUEST)
>
> try:
>
> first_file_logo = request.data['org']['first_logo']
> second_file_logo = request.data['org']['second_logo']
> third_file_logo = request.data['org']['third_logo']
>
> org = Organization.objects.create(
> name=request.data['org']['name'],
> email=request.data['org']['email'],
>  

Re: learning steps

2021-02-11 Thread Theresa Taye
Hello Anant,

online communities like this will help, also browse youtube for videos in
case you enjoy learning that way. lay your hands-on problems to solve, if
you get stuck use StackOverflow or generally search google.
As for the flow of learning, it is good you already started learning
python, also learn HTML, CSS, and JAVASCRIPT if you don't know them before,
frameworks like bootstrap will help but learn the basics of those
programming languages first.

I hope this helps a bit


Best regards
Theresa

On Thu, 11 Feb 2021 at 15:12, Anant Sakhare 
wrote:

> Hello everyone,
> I'm a mechanical engineering student, a few days ago I have started to
> learn Python basics. Now I wanted to learn the Django framework.
>
> can anyone guide me to
> 1. what are the learning resources I use?
> 2. Flow of learning
> 3. prerequisite for the start
>
>
> I would like to say thank you in advance for accepting me in this
> community.
>
> regards,
> Anant s.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/e6f536e3-4c07-49d4-bc34-2f93ef75ace9n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfM-gNZE355MV_hQDcJ%3D2h5cfhTB3z7ggOn5ten6hbnGmQ%40mail.gmail.com.


Re: how create new django project with windows 10 and Python 3.9.1

2021-01-27 Thread Theresa Taye
Check if this helps: https://www.youtube.com/watch?v=hsrXhYElVdY

Warm regards



Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Wed, 27 Jan 2021 at 15:03, Fabio Fidone 
wrote:

> [image: image.png]
>
> please, Can Someone help me to create a new project with python 3.9.1 and
> windows 10?
> every time, receive same output.
> thanks a lot
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAPOyAVVC8ej_%3DSU2zmeMzjAxTDfitocCdwiD_bFX4eF49xcYuw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfMDjM1frh3VyvmHkHiBvYetuLLf_dQchZVsDS8A6_F0ZQ%40mail.gmail.com.


Re: Request for admins

2020-10-12 Thread Theresa Taye
I agree with you, only that adding him to spam is not enough because I
noticed reasonable mails from people that he replies to also go to the spam
box.
On Oct 11, 2020 21:14, "o1bigtenor"  wrote:

> Greetings
>
> The list volume seems to have attracted those that purport to offer
> help or services.
>
> Is it possible that the volume of this has reached a point where there
> is a separate list for just that.
> That would be a separate subscription to a list where if one wanted to
> either use or offer services one was free to do so. The second part of
> that would be that if one overtly did the same on the 'users' list one
> would be either punted or at the very least put on controlled listing.
>
> This request is stemming from the 40 or 50 emails polluted by a listee
> who seems to think that attaching his business card or better its
> written equivalent to every thread is going to get him business. Mine
> - - - - never - - - - I don't do business that way.
>
> Hoping that this request isn't too far off topic!
>
> Regards
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAPpdf59qjGznmqJTbpHe6c8t0_GoTn6O8bs6agggPA6Zbx8EMQ%
> 40mail.gmail.com.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfO43MZWrdYP_uRSXeYnxW%2BZfi%3DbbJvh%2BjeFT%2BaBkf3EvA%40mail.gmail.com.


Re: Storing secret keys in Django

2020-09-25 Thread Theresa Taye
Thank you Kasper
I appreciate this
On Sep 25, 2020 22:47, "Kasper Laudrup"  wrote:

> Hi Theresa,
>
> On 25/09/2020 23.00, Theresa Taye wrote:
>
>> Hello guys,
>>
>> Please can anyone help with the best way to store/hide secret key in
>> django and if possible share a link to a straight forward YouTube tutorial.
>>
>>
> There's rarely a "best way", since use cases differ and people tend to
> have different preferences, but I personally use django-configurations:
>
> https://github.com/jazzband/django-configurations
>
> And then use an environment variable for my secret key which is set in the
> service file I use for starting my Django UWSGI application in production.
>
> Using django-configurations has the added benefit that I can easily have
> different configurations in development and production and the secret key
> is more or less the only thing I don't keep in revision control (git).
>
> Of course, not sure if that's the "best way", but it's one way at least :-)
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/ms
> gid/django-users/f6f938b0-7a9e-a635-cead-ae38a10e835c%40stacktrace.dk.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfMcZ%2BVpsFsRhTv0qmpLJBKfdZtjeU_CvhKKKTogO51Pvg%40mail.gmail.com.


Storing secret keys in Django

2020-09-25 Thread Theresa Taye
Hello guys,

Please can anyone help with the best way to store/hide secret key in django
and if possible share a link to a straight forward YouTube tutorial.

Thanks in anticipation

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfN2_kuUM9OYNqowfWyy8sz-q6aNbdvyU6PjUzdqpyuLvw%40mail.gmail.com.


Re: Check this out guys

2020-09-18 Thread Theresa Taye
Thank you
On Sep 18, 2020 09:05, "712189512"  wrote:

> I am hosting it on digital ocean
>
> On Fri, Sep 18, 2020 at 10:03 AM Theresa Taye 
> wrote:
>
>> Please did you host it on heroku?
>> On Sep 16, 2020 08:42, "712189512"  wrote:
>>
>>> Hi guys i have build this  *https://connectdjango.com
>>> <https://connectdjango.com>* platform with django and i want you to
>>> check it out,you can post your questions there and and also post some
>>> tutorials too,let's all connect and keep on djangoing.Thanks
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit https://groups.google.com/d/
>>> msgid/django-users/CAL-5MpUAbK%2BEZxt_qJo9jrsFqf0p%
>>> 3DS3-JPXoMHv3X1jWDXY5NQ%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/django-users/CAL-5MpUAbK%2BEZxt_qJo9jrsFqf0p%3DS3-JPXoMHv3X1jWDXY5NQ%40mail.gmail.com?utm_medium=email_source=footer>
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/
>> msgid/django-users/CAENBRfPhj8BTv_URL8yT9Dr4mpTugqp1N1cj5rW%
>> 2BSZE73TZE_Q%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAENBRfPhj8BTv_URL8yT9Dr4mpTugqp1N1cj5rW%2BSZE73TZE_Q%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>>
> --
> Gabrielstone
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAL-5MpVPPOFWgOAc1Apdv7ro4q3nvt_
> v0FvQdeNHY5tZU2sCNQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAL-5MpVPPOFWgOAc1Apdv7ro4q3nvt_v0FvQdeNHY5tZU2sCNQ%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfN90HbhaWEOLcbhao4xz--f_ORkGtPDYiR6sQCo5gc%3DqQ%40mail.gmail.com.


Re: Check this out guys

2020-09-18 Thread Theresa Taye
Please did you host it on heroku?
On Sep 16, 2020 08:42, "712189512"  wrote:

> Hi guys i have build this  *https://connectdjango.com
> * platform with django and i want you to check
> it out,you can post your questions there and and also post some tutorials
> too,let's all connect and keep on djangoing.Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAL-5MpUAbK%2BEZxt_qJo9jrsFqf0p%
> 3DS3-JPXoMHv3X1jWDXY5NQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfPhj8BTv_URL8yT9Dr4mpTugqp1N1cj5rW%2BSZE73TZE_Q%40mail.gmail.com.


Re: Check this out guys

2020-09-18 Thread Theresa Taye
Lovely, you are doing well
On Sep 16, 2020 08:42, "712189512"  wrote:

> Hi guys i have build this  *https://connectdjango.com
> * platform with django and i want you to check
> it out,you can post your questions there and and also post some tutorials
> too,let's all connect and keep on djangoing.Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAL-5MpUAbK%2BEZxt_qJo9jrsFqf0p%
> 3DS3-JPXoMHv3X1jWDXY5NQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfMXEJ8skRESQwkYa_qvQD4H86dnS4v%2BS7UqW_ZwUs-SwA%40mail.gmail.com.


Re: Deploying my Django project

2020-09-17 Thread Theresa Taye
Thank you very much guys, I am currently using the free hosting on Heroku
but reading online I learnt the paid version can be expensive. I just need
a real-life experience of the one anyone has used and that works fine. I'm
working on a health blog site. All the same, the responses are well
appreciated

On Thu, 17 Sep 2020 at 07:23, Samuel Nogueira  wrote:

> Hi, heroku is a good choice to deploy your Project.
>
>
>
>
>
>
> -
>
> Samuel Nogueira Bacelar
>
>
>
> GitHub: https://github.com/SamuelNoB
>
>
>
> Linkedin: https://www.linkedin.com/in/samuel-nogueira-87800b1aa/
>
>
>
>
> ---------
>
>
>
> *De: *Theresa Taye 
> *Enviado:*quinta-feira, 17 de setembro de 2020 10:46
> *Para: *django-users@googlegroups.com
> *Assunto: *Deploying my Django project
>
>
>
> Hello guys,
>
>
>
>  please can anyone make recommendations about good hosting to use for my
> django project.
>
>
>
> thanks in anticipation
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAENBRfPFj_EH0fG%2BSMvfgRtx88OjKGCiUcLLupa%2BYDbzsdN-Og%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAENBRfPFj_EH0fG%2BSMvfgRtx88OjKGCiUcLLupa%2BYDbzsdN-Og%40mail.gmail.com?utm_medium=email_source=footer>
> .
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/693DA645-BE96-49FD-AB97-608368A89122%40hxcore.ol
> <https://groups.google.com/d/msgid/django-users/693DA645-BE96-49FD-AB97-608368A89122%40hxcore.ol?utm_medium=email_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfMq8TPHis427w6VyegwjQnR8-481%2Bjmtv3b6a9Pmz5Exg%40mail.gmail.com.


Deploying my Django project

2020-09-17 Thread Theresa Taye
Hello guys,

 please can anyone make recommendations about good hosting to use for my
django project.

thanks in anticipation

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAENBRfPFj_EH0fG%2BSMvfgRtx88OjKGCiUcLLupa%2BYDbzsdN-Og%40mail.gmail.com.