Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/virtualenv #30

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions lg.wsgi
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

import sys
import os

sitepath = os.path.realpath(os.path.dirname(__file__))
sys.path.insert(0, sitepath)
#Uncomment these two lines if you want to make use of virtualenv
#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
9 changes: 5 additions & 4 deletions lgproxy.wsgi
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

import sys
import os

sitepath = os.path.realpath(os.path.dirname(__file__))
sys.path.insert(0, sitepath)
#Uncomment these two lines if you want to make use of virtualenv
#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 lgproxy import app as application
12 changes: 12 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
click==6.7
dnspython==1.15.0
Flask==0.12.2
itsdangerous==0.24
Jinja2==2.9.6
MarkupSafe==1.0
pydot==1.2.3
pymemcache==1.4.3
pyparsing==2.2.0
python-memcached==1.58
six==1.11.0
Werkzeug==0.12.2