mirror of
https://github.com/sileht/bird-lg.git
synced 2024-11-17 04:44:42 +01:00
9 lines
202 B
Python
9 lines
202 B
Python
import sys
|
|
|
|
activate_this = '/path/to/bird-lg/venv/bin/activate_this.py'
|
|
execfile(activate_this, dict(__file__=activate_this))
|
|
|
|
sys.path.insert(0, '/path/to/bird-lg')
|
|
|
|
from lg import app as application
|