mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-02 22:34:58 +08:00
10 lines
226 B
Python
10 lines
226 B
Python
import sys
|
|
import os
|
|
|
|
#hack around absolute paths
|
|
current_dir = os.path.abspath(os.path.dirname(__file__))
|
|
parent_dir = os.path.abspath(current_dir + "/../")
|
|
|
|
sys.path.insert(0, parent_dir)
|
|
|
|
from api import app as application |