Exemplo n.º 1
0
def runserver():

    from asset.views.admin import main

    with app.app_context():

        initialize_api(app, app.api)

        app.register_blueprint(main)

        port = int(os.environ.get('PORT', 5000))
        app.run(host='0.0.0.0', port=port)
Exemplo n.º 2
0
def runserver():
    """ Start the server"""
    # with app2.app_context():
    from kx.views.public import www
    from kx import api, principal
    from kx.resources import resource

    # Initialize the app blueprints
    initialize_blueprints(app, www)
    initialize_api(app, api)

    port = int(os.environ.get('PORT', 5550))
    app.run(host='0.0.0.0', port=port)
Exemplo n.º 3
0
def runserver():

	"""
	running application
	"""

	from factories import initialize_api
	from locator.resources.base import *

	initialize_api(app, app.api)

	with app.app_context():

		port = int(os.environ.get('PORT', 5000))
		app.run(host='0.0.0.0', port=port)
Exemplo n.º 4
0
def runserver():
	""" Start the server"""

	from fitted.views.frontend import main
	
	from fitted.resources import events
	from fitted.services import authentication, products
	from fitted import api
	from fitted.subscribers import events

	# Initialize the api resources
	initialize_blueprints(app, main)
	initialize_api(app, api)


	port = int(os.environ.get('PORT', 5000))
	app.run(host='0.0.0.0', port=port)
Exemplo n.º 5
0
def runadmin():
	""" Start the server"""

	from fitted.views.admin import control
	
	from fitted.resources import assets, merchant
	from fitted.resources.admin import auth, assets
	from fitted import api

	# Initialize the api resources
	initialize_api(app, api)

	# # Import all subscriptions to initialize them
	from fitted.services import search
	from fitted.subscribers import registration, inventory, search, messages
	
	# Initialize the app blueprints
	initialize_blueprints(app, control)

	port = int(os.environ.get('PORT', 5001))
	app.run(host='0.0.0.0', port=port)
Exemplo n.º 6
0
from factories import create_app, initialize_api
import os

app = create_app('monitor', 'config.Config')

with app.app_context():
    from asset import api
    from asset.resources.resource import *
    from asset.views.admin import main

    app.register_blueprint(main)
    initialize_api(app, api)

    if __name__ == "__main__":
        port = int(os.environ.get('PORT', 5000))
        app.run(host='0.0.0.0', port=port)