blob: 22b3eb79edaed23ed9d05599249c7269140aab94 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001from toastermain.settings import getDATABASE_URL
2from django.core.management.base import NoArgsCommand
3
4class Command(NoArgsCommand):
5 args = ""
6 help = "get database url"
7
8 def handle_noargs(self,**options):
9 print getDATABASE_URL()