1
import sys, os
2
3
BASE_DIR = os.path.join(os.path.dirname(__file__))
4
5
sys.path.insert(0, BASE_DIR)
6
7
#import production_settings
8
9
from swtstore import create_app
10
11
application = create_app()