Include example project

This commit is contained in:
Sebastien Corbin
2020-04-18 20:20:26 +02:00
parent ac8c20abb3
commit a6946d160d
10 changed files with 148 additions and 3 deletions

10
example_project/manage.py Executable file
View File

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