Initial project and app commit

This commit is contained in:
Lexi / Zoe 2019-03-20 22:14:36 +01:00
parent 77b7aaf1e3
commit 6c43c8b360
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
12 changed files with 189 additions and 0 deletions

15
manage.py Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env python
import os
import sys
if __name__ == '__main__':
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tofu.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc
execute_from_command_line(sys.argv)