$ python manage.py
$ django-admin.py
Paramètres pour compléter, etc. avec des onglets
$ wget https://raw.github.com/django/django/7515f6576b593c5f7a1ff2b2f934d5442b52b884/extras/django_bash_completion
$ mv django_bash_completion .django_bash_completion
$ vi ~/.bashrc
#### **`~/.bashrc`**
. ~/.django_bash_completion
Ce qui suit est un paramètre ajouté car .bashrc n'a pas été chargé. Non requis s'il est lu correctement
#### **`$ vi ~/. bash_profile `**
~/.bash_profile
if [ -f ~/.bashrc ] ; then
. ~/.bashrc
fi
Recommended Posts