Browse Source

changed port to 8080 - keep it uniform with views.py

ansible-setup-and-deploy
Alex 6 years ago
parent
commit
b24d05e77d
  1. 2
      app/models.py
  2. 8
      app/views.py
  3. 2
      run.py

2
app/models.py

@ -95,8 +95,6 @@ class BookSchema(Schema):
def must_not_be_blank(data):
if not data:
raise ValidationError('You forgot to write stuff.')

8
app/views.py

@ -66,7 +66,7 @@ def show_books():
return redirect((url_for('search_results', query=search.search.data)))
if search.select.data == 'Category':
return redirect((url_for('search_cat', query=search.search.data)))
return render_template('show_books.html', books=books, form=search)
@app.route('/scape', methods=['POST', 'GET'])
@ -148,8 +148,8 @@ def add_book():
upload_form = UploadForm()
if request.method == 'POST':
title = upload_form.title.data
authors = upload_form.author.data
title = upload_form.title.data
authors = upload_form.author.data
category = upload_form.category.data
year_published = upload_form.year_published.data
@ -311,7 +311,7 @@ def get_books():
@app.route('/api/books/<int:id>', methods=['GET'])
def get_book_by_id(id):
book = Book.query.get(id)
data, error = book_schema.dump(book)
data = book_schema.dump(book)
if not data:
return jsonify({"message": "Book could not be found."}), 400
else:

2
run.py

@ -1,3 +1,3 @@
#! /usr/bin/env python
from app import app
app.run(debug=True,host="0.0.0.0",port=8000)
app.run(debug=True,host="0.0.0.0",port=8080)

Loading…
Cancel
Save