forked from server/soundboard
11 lines
246 B
Python
11 lines
246 B
Python
import sys
|
|
|
|
sys.path.insert(0, '/var/www/soundboard')
|
|
|
|
activate_this = '/var/www/soundboard/py/bin/activate_this.py'
|
|
|
|
with open(activate_this) as file_:
|
|
exec(file_.read(), dict(__file__=activate_this))
|
|
|
|
from soundboard import app as application
|