Re: Django Folder Boostrapping

2020-09-29 Thread Mariusz Felisiak
Hi, It was discussed in the past, see https://code.djangoproject.com/ticket/25943. Please bump the old conversation instead of creating a new one. Best, Mariusz -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itsel

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