librebudget/manage.py
Ian Adam Naval 558d2d477b Restructure project
Move modules into sensible locations.
Introduce method of compiling documentation with Sphinx.
2015-07-15 19:24:36 -07:00

13 lines
289 B
Python
Executable File

#!/usr/bin/env python
import os
import sys
import dotenv
dotenv.read_dotenv()
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "librebudget.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)