mirror of
https://github.com/aquatix/digimarks.git
synced 2025-12-06 18:35:12 +01:00
17 lines
469 B
Python
17 lines
469 B
Python
# Activate virtualenv
|
|
import settings
|
|
activate_this = getattr(settings, 'VENV', None)
|
|
# FIXME: python 2 *and* python 3 compatibility
|
|
# Python 2
|
|
#if activate_this:
|
|
# execfile(activate_this, dict(__file__=activate_this))
|
|
# Python 3
|
|
with open(activate_this) as file_:
|
|
exec(file_.read(), dict(__file__=activate_this))
|
|
|
|
from digimarks import app as application
|
|
|
|
if __name__ == "__main__":
|
|
# application is ran standalone
|
|
application.run(debug=settings.DEBUG)
|