chore: add flask-caching as dependency
This commit is contained in:
parent
361924821e
commit
4dfaa63a65
2 changed files with 10 additions and 2 deletions
|
@ -1,4 +1,8 @@
|
||||||
|
wheel
|
||||||
flask
|
flask
|
||||||
sentry-sdk[flask]
|
sentry-sdk[flask]
|
||||||
|
flask-caching
|
||||||
|
|
||||||
|
# threads
|
||||||
requests
|
requests
|
||||||
markdown
|
markdown
|
||||||
|
|
8
web.py
8
web.py
|
@ -1,6 +1,7 @@
|
||||||
|
from flask import Flask, send_from_directory
|
||||||
|
from flask_caching import Cache
|
||||||
import sentry_sdk
|
import sentry_sdk
|
||||||
import json
|
import json
|
||||||
from flask import Flask, send_from_directory
|
|
||||||
from partials import partials
|
from partials import partials
|
||||||
from threads import threads
|
from threads import threads
|
||||||
|
|
||||||
|
@ -9,7 +10,10 @@ app.register_blueprint(partials, url_prefix='/p')
|
||||||
app.register_blueprint(threads, url_prefix='/threads')
|
app.register_blueprint(threads, url_prefix='/threads')
|
||||||
app.config.from_file("config.json", load=json.load)
|
app.config.from_file("config.json", load=json.load)
|
||||||
|
|
||||||
# sentry.io error monitoring
|
# caching
|
||||||
|
cache = Cache()
|
||||||
|
|
||||||
|
# perf monitoring & error tracking
|
||||||
sentry_config = app.config["SENTRY"]
|
sentry_config = app.config["SENTRY"]
|
||||||
sentry_sdk.init(
|
sentry_sdk.init(
|
||||||
dsn=sentry_config["dsn"],
|
dsn=sentry_config["dsn"],
|
||||||
|
|
Loading…
Reference in a new issue