blob: fbaa13413b9fd8b1e26bdf81d35c0f66fb8bac26 (
plain)
1
2
3
4
5
6
7
8
9
|
import sys
import os
__HERE__ = os.path.dirname(os.path.abspath(__file__))
# Add the budget directory to the path so we can then import from run
sys.path.insert(0, os.path.join(__HERE__, 'budget'))
from run import app as application
|