Beispiel #1
0
    def setUp(self):
        BaseTest.setUp(self)

        self.app.config['MORESQL_DATABASE_URI'] = \
            'postgres://*****:*****@localhost:5432/moresql'
        self.db = MoreSQL(self.app)
        self.client = self.app.test_client()
Beispiel #2
0
import os
from flask import Flask
from flask.ext.moresql import MoreSQL

app = Flask(__name__)
app.config['MORESQL_DATABASE_URI'] = 'postgres://*****:*****@' + os.environ[
    'DB_PORT_5432_TCP_ADDR'] + ':5432/docker'
db = MoreSQL(app)


@app.route('/')
def index():
    return 'Hello World'


@app.route('/show-all/')
def show_all():
    return db.execute('student_list')


if __name__ == '__main__':
    # Bind to PORT if defined, otherwise default to 5000.
    port = int(os.environ.get('PORT', 5000))
    app.run(host='0.0.0.0', port=port)