Beispiel #1
0
    def run(self):
        #self.logger.info("Motion core will use %s configuration" % self.settings["camera_configuration_path"])
        #self.logger.info("Motion api bot instance initialized!")

        linkero.run()  # Run with Werkzeug (not recommended for production environments)
        # gevent.run(linkero.app)    # Run with Gevent
        # waitress.run(linkero.app)   # Run with Waitress
        return
Beispiel #2
0
             "password": "******",
             "secret": "admin"
         })
    print(bcolors.WARNING +
          "\nGranted access for user 'demo' with password 'demo'\n" +
          bcolors.ENDC)


t = threading.Timer(5, worker)  # Generate new user after 5 seconds
if os.path.isfile(
        'config/config.json'):  # Thread only starts if config.json exists
    t.start()
# ++++++++++++++++++++++++++++++++++++++++++++++++++

# 1) Linkero Core
import linkero.core.linkero as linkero
import linkero.core.gateway.gevent_service as gevent
import linkero.core.gateway.waitress_service as waitress

# 2) APIs developed to use with Linkero
import testAPI

# 3) Load desired APIs
testAPI.loadTestAPI()

# 4) Run Linkero
linkero.run(
)  # Run with Werkzeug (not recommended for production environments)
#gevent.run(linkero.app)    # Run with Gevent
#waitress.run(linkero.app)   # Run with Waitress
Beispiel #3
0
# -*- coding: utf-8 -*-

# 1) Linkero Core
import linkero.core.linkero as linkero
#import linkero.core.gateway.gevent_service as gevent
#import core.gateway.waitress_service as waitress

# 2) APIs developed to use with Linkero
import api

# 3) Load desired APIs
api.loadRaijinAPI()

# 4) Run Linkero
linkero.run()
#gevent.run(linkero.app)
#waitress.run(linkero.app)