Skip to content

Commit

Permalink
add tag .
Browse files Browse the repository at this point in the history
  • Loading branch information
hopeaktian committed Dec 10, 2018
1 parent 1d32d7c commit 319059b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from config import DevConfig
from app.models import db, User, Comment, Post, Tag, tags
from controllers.post import post
from controllers.writer import writer

app = Flask(__name__)
app.config.from_object(DevConfig)
Expand Down Expand Up @@ -40,6 +41,7 @@ def index():


app.register_blueprint(post)
app.register_blueprint(writer)

if __name__ == '__main__':
app.run(host='localhost', port=80)
app.run(host='192.168.3.5', port=80)

0 comments on commit 319059b

Please sign in to comment.