-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
38 lines (29 loc) · 1.06 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from flask import Flask
from flask_restful import Api
from flask_jwt import JWT
from security import authenticate, identity
from resources.user import UserRegister, User
from resources.note import Note, NoteList, NoteTag, Untag
from resources.tag import Tag, TagList
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///data.db'
app.config['PROPAGATE_EXCEPTIONS'] = True
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.secret_key = '51de0c692eb2684921d3cae1807651ef'
api = Api(app)
@app.before_first_request
def create_tables():
db.create_all()
jwt = JWT(app, authenticate, identity)
api.add_resource(Note, '/note/<string:note_title>')
api.add_resource(Tag, '/tag/<string:name>')
api.add_resource(NoteList, '/notes')
api.add_resource(TagList, '/tags')
api.add_resource(NoteTag, '/addTo/<string:tag_name>')
api.add_resource(Untag, '/untag/<string:note_title>')
api.add_resource(UserRegister, '/register')
api.add_resource(User, '/user/<int:user_id>')
if __name__ == '__main__':
from db import db
db.init_app(app)
app.run(debug=True)