Structure for deploying django channels in producting in AWS

2016-11-27 Thread Vaisagh Viswanathan
Hi, I'm trying to setup up my django project to use django channels in a dockerized setup. The whole setup seems to work fine on a local server and when I use runserver instead of daphne. When I run the setup using daphne, the web page gives no response The page isn’t working * did

DateTimeField Outside Admin

2016-11-27 Thread Elias Coutinho
Good afternoon people, I would like to dis

Re: Structure for deploying django channels in producting in AWS

2016-11-27 Thread Andrew Godwin
Hi Vaisagh, You do not need nginx/apache in front of daphne to make it work (though it is usually a good idea to have it to serve static images, like you would with gunicorn). Have you tried connecting to the container directly locally from the host machine or from inside the container itself? Ha

Re: Mysql GeoDjango Distance search

2016-11-27 Thread Sergiy Khohlov
MySQL does not have this support. I've tested few potential solution but most of them have a hige problem with performance. Many thanks, Serge +380 636150445 skype: skhohlov On Fri, Nov 25, 2016 at 1:52 PM, Karesh Arunakirinathan wrote: > down votefavorite >

request

2016-11-27 Thread Bhanu jamwal
i am new to it please let me know the aims and steps regards Bhanu -- 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

Re: request

2016-11-27 Thread ludovic coues
What are you trying to do ? 2016-11-27 23:03 GMT+01:00 Bhanu jamwal : > i am new to it please let me know the aims and steps > regards > Bhanu > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiv

Re: request

2016-11-27 Thread Mike Dewhirst
Here is a good place to start ... https://www.djangoproject.com/ then continue here ... https://docs.djangoproject.com/en/1.10/intro/tutorial01/ Welcome On 28/11/2016 9:03 AM, Bhanu jamwal wrote: i am new to it please let me know the aims and steps regards Bhanu -- You received this message

Re: DateTimeField Outside Admin

2016-11-27 Thread M Hashmi
Its simple. In your view in your context dictionary create a variable for date. Import timezone and date = timezone.now(). You can declared "date" like {{ date }} in any of your template and you will get date coming up. On Sun, Nov 27, 2016 at 8:50 AM, Elias Coutinho wrote: > > >

Re: django-admin server start/stop

2016-11-27 Thread Antonis Christofides
There is no "manage.py server" management command. There is only "manage.py runserver", which you probably know already, and which is meant only for development, not for production. For development, "manage.py runserver" works wonders, and stopping it with Ctrl+C is all you want. For production, y