Skip to content

Commit

Permalink
Upgrade to 0.9.3 & Fix root route problem
Browse files Browse the repository at this point in the history
  • Loading branch information
noahziheng committed Mar 6, 2018
1 parent c47f9da commit 1996c33
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file removed .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions libfreeiot/core/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def create_routes(app):
app.config['MAX_CONTENT_LENGTH'] = 16 * 1024 * 1024
jwt = JWTManager(app)

@app.route('/')
def catch_all():
@app.route('/hello')
def say_hello():
'''
Index Route
'''
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

setup(
name = "libfreeiot",
version = "0.9.2",
version = "0.9.3",
description = 'A free, open-source IoT Framework',
author = 'Noah Gao',
author_email = '[email protected]',
url = 'https://github.com/noahziheng/freeiot',
download_url = 'https://github.com/noahziheng/freeiot/archive/0.9.2.tar.gz',
download_url = 'https://github.com/noahziheng/freeiot/archive/0.9.3.tar.gz',
packages = find_packages(),
install_requires=[ # 依赖列表
'Flask>=0.12.2',
Expand Down

0 comments on commit 1996c33

Please sign in to comment.