-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
51 lines (39 loc) · 1.61 KB
/
app.py
File metadata and controls
51 lines (39 loc) · 1.61 KB
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
39
40
41
42
43
44
45
46
47
48
# source ./venv/bin/activate
# pip install Flask-RESTful
# pip install Flask-JWT (JSON Web Tokens for obfuscation and authentication)
# pip install Flask-SQLAlchemy
# installed libraries
import os
from flask import Flask
from flask_restful import Api
from flask_jwt import JWT
# local libraries
from db import db
from security import authenticate, identity
from resources.user import UserRegister
from resources.item import Item, ItemList
from resources.store import Store, StoreList
app = Flask(__name__)
app.config['DEBUG'] = True
app.config['SQLALCHEMY_DATABASE_URI'] = os.environ.get('DATABASE_URL','sqlite:///data.db') # get the env. variable (from heroku) or sqlite db file
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.secret_key = 'my secret'
api = Api(app)
# create the endpoint /auth
jwt = JWT(app, authenticate, identity)
# add resources the the endpoint
api.add_resource(Store, '/store/<string:name>') # i.e.: http://127.0.0.1:5000/store/ecomm
api.add_resource(StoreList, '/stores') # i.e.: http://127.0.0.1:5000/stores
api.add_resource(Item, '/item/<string:name>') # i.e.: http://127.0.0.1:5000/item/salt
api.add_resource(ItemList, '/items') # i.e.: http://127.0.0.1:5000/items
api.add_resource(UserRegister, '/register') # i.e.: http://127.0.0.1:5000/register
if __name__ == '__main__': # this gives the ability to import app.py without runing the application
db.init_app(app)
if app.config['DEBUG']:
@app.before_first_request
def create_tables():
db.create_all()
app.run(port=5000, debug=True)
# (on terminal)
# source venv/bin/activate
# python app.py