예제 #1
0
파일: wsgi.py 프로젝트: giga811/cloudexp
# -*- coding: utf-8 -*-
from cloudapp import app

if __name__ == "__main__":
  app.run()

예제 #2
0
파일: run.py 프로젝트: giga811/cloudexp
#!flask/bin/python
# -*- coding: utf-8 -*-
"""Run cloudapp"""

from cloudapp import app
app.run(host="0.0.0.0", debug=True)