Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1"""LICENSE 

2Copyright 2020 Hermann Krumrey <hermann@krumreyh.com> 

3 

4This file is part of stockstert. 

5 

6stockstert is free software: you can redistribute it and/or modify 

7it under the terms of the GNU General Public License as published by 

8the Free Software Foundation, either version 3 of the License, or 

9(at your option) any later version. 

10 

11stockstert is distributed in the hope that it will be useful, 

12but WITHOUT ANY WARRANTY; without even the implied warranty of 

13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 

14GNU General Public License for more details. 

15 

16You should have received a copy of the GNU General Public License 

17along with stockstert. If not, see <http://www.gnu.org/licenses/>. 

18LICENSE""" 

19 

20import os 

21import pkg_resources 

22from flask import Flask 

23from flask_sqlalchemy import SQLAlchemy 

24from flask_login import LoginManager 

25 

26app = Flask(__name__) 

27""" 

28The Flask App 

29""" 

30 

31db = SQLAlchemy() 

32""" 

33The SQLAlchemy database connection 

34""" 

35 

36login_manager = LoginManager(app) 

37""" 

38The Flask-Login Login Manager 

39""" 

40 

41 

42def configure(): 

43 

44 app.config["TRAP_HTTP_EXCEPTIONS"] = True 

45 login_manager.session_protection = "strong" 

46 

47 if "FLASK_TESTING" in os.environ: 47 ↛ 50line 47 didn't jump to line 50, because the condition on line 47 was never false

48 app.testing = os.environ["FLASK_TESTING"] == "1" 

49 

50 @app.context_processor 

51 def inject_template_variables(): 

52 """ 

53 Injects the project's version string so that it will be available 

54 in templates 

55 :return: The dictionary to inject 

56 """ 

57 version = \ 

58 pkg_resources.get_distribution("stockstert").version 

59 return { 

60 "version": version, 

61 "env": app.env 

62 } 

63 

64 

65configure()