mirror of
https://github.com/aquatix/digimarks.git
synced 2025-12-07 00:15:10 +01:00
11 lines
270 B
Python
11 lines
270 B
Python
# Activate virtualenv
|
|
import settings
|
|
activate_this = settings.VENV
|
|
execfile(activate_this, dict(__file__=activate_this))
|
|
|
|
from digimarks import app as application
|
|
|
|
if __name__ == "__main__":
|
|
# application is ran standalone
|
|
application.run(debug=settings.DEBUG)
|