我想将我的本地unix服务器上的应用程序部署到OpenShift云。我在那里注册并结帐git存储库。但我现在不知道该怎么做。 此存储库中的应用程序具有以下结构:
/libs
/app.py
/setup.py
/wsgi
static/
application
但我不知道应该在哪里复制我应该修改哪些文件的项目。我的项目结构如下:
/domain.wsgi
/domain/
app.py
infrastructure.py
models/
static/
templates/
views/
domain.wsgi
import sys, os
current_dir = os.path.abspath(os.path.dirname(__file__))
sys.path.append(current_dir)
from domain.app import app as application
app.py
from infrastructure import app
import views.index
import views.login
import views.logout
import models.sa
infrastructure.py
from flask import Flask, g
from flask.ext.sqlalchemy import SQLAlchemy
from models.sa import get_user_class, UserQuery
from models.database import db_session
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql://.............'
db = SQLAlchemy(app)
## Set SQL Alchemy to automatically tear down
@app.teardown_request
def shutdown_session(exception=None):
db_session.remove()
# Instantiate authentication
User = get_user_class(db.Model)
# config
app.config.update(
DEBUG = True,
SECRET_KEY = 'xxxxxxxxx'
)
由于
答案 0 :(得分:0)
您的文件位于wsgi文件夹下;请参阅本教程,了解如何将烧瓶应用程序部署到OpenShift:http://www.paasmag.com/2013/01/08/beginners-guide-to-writing-flask-apps-on-openshift/