Skip to content

Commit

Permalink
Update app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash515 committed Dec 23, 2021
1 parent 699c0ca commit 1bdd8c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Backend/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
app.config['SQLALCHEMY_DATABASE_URI'] = "sqlite:https:///student_results.db"
db = SQLAlchemy(app)

#schema definition

class StudentLoginModel(db.Model):
id = db.Column(db.Integer, primary_key=True)
Expand Down Expand Up @@ -70,6 +71,6 @@ def check():



if __name__ == '__main__':
if __name__ == '__main__':
app.run(host="0.0.0.0", debug=True, port=5000)

0 comments on commit 1bdd8c2

Please sign in to comment.