Re: Django Folder Boostrapping

2020-09-28 Thread Amit Gautam
Hey! can you please help me in my django related taks On Monday, 28 September 2020 at 23:36:37 UTC+5:30 Adam Johnson wrote: > Hi > > startapp is customizable with templates: > https://docs.djangoproject.com/en/3.0/ref/django-admin/#cmdoption-startapp-template > > . You can base such a templat

Re: Django Folder Boostrapping

2020-09-28 Thread Adam Johnson
Hi startapp is customizable with templates: https://docs.djangoproject.com/en/3.0/ref/django-admin/#cmdoption-startapp-template . You can base such a template on the built-in template and customize it how you like - for example adding a urls.py file: https://github.com/django/django/tree/master/dj

Django Folder Boostrapping

2020-09-28 Thread LokotamaTheMastermind
I think Django should add the urls.py file when bootstrapping the project with command django-admin startapp app The information inside could be ``` from django.urls import path # Use this to define apps routes urlpatterns = [] ``` It will really help, thank you -- You received this message

Re: Async Caching

2020-09-28 Thread Adam Johnson
> > I think right now I would prefer get_async all things considered Ditto - reading is more important than writing, and starting with the operation means earlier comprehension of the operation. Also typing-aware autocomplete can notice when you type "await' and prefer autocompleting async metho