Forgot to add the examples folder

This commit is contained in:
Dave Halter
2018-01-30 00:08:17 +01:00
parent c9fa335145
commit 60f89522a7
4 changed files with 16 additions and 0 deletions

View File

View File

@@ -0,0 +1 @@
SomeModel = "bar"

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "foobar.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)