Comments on: Ecrire une commande Django http://sametmax.com/ecrire-une-commande-django/ Du code, du cul Mon, 28 Oct 2019 11:54:55 +0000 hourly 1 https://wordpress.org/?v=4.9.7 By: ZuluPro http://sametmax.com/ecrire-une-commande-django/#comment-22389 Thu, 27 Mar 2014 19:43:28 +0000 http://sametmax.com/?p=7729#comment-22389 J’ajouterai ce petit snippet dans /bin pour ne plus avoir à aller chercher manage.py:

#!/usr/bin/env python
# Shortcut to manage.py

import sys
from os import environ
from os.path import dirname, abspath
from django.core.management import execute_from_command_line 
from my_app import my_app


# Find where is your app
APP_DIR = dirname(dirname(abspath(my_app.__file__)))
# Set env to use you app
sys.path.append(APP_DIR)
environ['DJANGO_SETTINGS_MODULE'] = 'my_app.settings'
execute_from_command_line()
]]>
By: Sam http://sametmax.com/ecrire-une-commande-django/#comment-16652 Thu, 05 Dec 2013 20:44:13 +0000 http://sametmax.com/?p=7729#comment-16652 Bien vu man.

]]>
By: Metikha http://sametmax.com/ecrire-une-commande-django/#comment-16648 Thu, 05 Dec 2013 19:12:15 +0000 http://sametmax.com/?p=7729#comment-16648 Super, merci pour l’article !

(Petite erreur dans le code, handle prend **options et vous utilisez **kwargs dans la fonction)
Bonne continuation !

]]>
By: Sam http://sametmax.com/ecrire-une-commande-django/#comment-16638 Thu, 05 Dec 2013 16:16:31 +0000 http://sametmax.com/?p=7729#comment-16638 Moi je me suis fais une commande fabric pour ça. Faudra que je poste mes recettes fabric un de ces 4.

]]>
By: foxmask http://sametmax.com/ecrire-une-commande-django/#comment-16637 Thu, 05 Dec 2013 16:05:26 +0000 http://sametmax.com/?p=7729#comment-16637 j’en cherchais une de commande pile poil hier pour flush la base de données (celle là meme qui est lancée quand on demarre les test unitaires). ya pas le les smartphones sur la meme longueur d’ondes ;)

]]>