9 lines
144 B
Python
Executable File
9 lines
144 B
Python
Executable File
import os
|
|
import sys
|
|
sys.path.append('/var/www/nlp')
|
|
|
|
import logging
|
|
logging.basicConfig(stream=sys.stderr)
|
|
|
|
from app import app as application
|