Restructure settings (#882)

* Refactor settings into importable base.

User deployment should use 'from allianceauth.settings.base import *' in their project settings.

* Restructure tests folder.
Remove DOMAIN setting.
Use localhost for services revoked emails.

* Add missing python3.4 typing requirement
typing is included python3.5+

* Remove legacy setup comments
Remove legacy update script
This commit is contained in:
Adarnof
2017-10-04 23:12:49 -04:00
committed by Basraah
parent d7cb1a2fab
commit 111105d48b
21 changed files with 475 additions and 999 deletions

View File

@@ -3,7 +3,7 @@ import os
import sys
if __name__ == "__main__":
os.environ['DJANGO_SETTINGS_MODULE'] = 'test_allianceauth.settings'
os.environ['DJANGO_SETTINGS_MODULE'] = 'tests.settings'
try:
from django.core.management import execute_from_command_line