Opened 10 years ago
Closed 10 years ago
#23848 closed New feature (wontfix)
Creating requirements.txt file in default django-admin.py startproject template
Description ¶
Django projects usually get deployed somewhere where requirements.txt file is needed. It would be nice to create it with default django-admin.py startproject
command and propagate it with current Django version.
Note:
See TracTickets
for help on using tickets.
Thanks for the suggestion, but I think it's better to let users create their own files. There are many different schemes
local-requirements.txt
,deploy-requirements.txt
, etc. In the case of usingpip freeze > requirements.txt
there is no benefit to adding a file.