blob: ed9925286a5caf588d8ff95377bf5406a125156a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/python
import sys
sys.path.insert(0, "/home/dulldream/dulldream/www/dulldream_xyz/")
from app import create_app
import logging
logging.basicConfig(stream=sys.stderr)
# logging.basicConfig(filename='error.log',level=logging.DEBUG)
application = create_app('production')
application.secret_key = 'curlier6982!1decentralizationists'
|