Exemple #1
0
from common.config import config
from www.server import app
import www.index
import www.help
import www.notifications
import www.stats
import www.login
import www.archive
import www.votes
import www.commands
import www.spam
import www.botinteract
import www.history
import www.api
import www.quotes

app.secret_key = config["session_secret"]
app.add_template_filter(utils.nice_duration)
app.add_template_filter(utils.ucfirst)
app.add_template_filter(utils.timestamp)
app.add_template_filter(utils.https)
app.add_template_filter(utils.noproto)
app.csrf_token = app.jinja_env.globals["csrf_token"]
app.jinja_env.globals["min"] = min
app.jinja_env.globals["max"] = max

__all__ = ["app"]

if __name__ == "__main__":
    app.run(debug=True, use_reloader=False)
Exemple #2
0
from www.server import app
import www.index
import www.help
import www.notifications
import www.stats
import www.login
import www.archive
import www.votes
import www.commands
import www.spam
import www.history
import www.api
import www.quotes
import www.patreon

app.secret_key = config["session_secret"]
app.config["PREFERRED_URL_SCHEME"] = config["preferred_url_scheme"],
app.add_template_filter(common.time.nice_duration)
app.add_template_filter(utils.ucfirst)
app.add_template_filter(www.utils.timestamp)
app.add_template_filter(common.url.https)
app.add_template_filter(common.url.noproto)
app.csrf_token = app.jinja_env.globals["csrf_token"]
app.jinja_env.globals["min"] = min
app.jinja_env.globals["max"] = max

__all__ = ['app']

if __name__ == '__main__':
    app.run(debug=True, use_reloader=False)
Exemple #3
0
import www.commands
import www.spam
import www.history
import www.api
import www.api_v2
import www.quotes
import www.patreon
import www.clips
import www.prefs

app.secret_key = config["session_secret"]
app.config["PREFERRED_URL_SCHEME"] = config["preferred_url_scheme"],
app.add_template_filter(common.time.nice_duration)
app.add_template_filter(utils.ucfirst)
app.add_template_filter(www.utils.timestamp)
app.add_template_filter(common.url.https)
app.add_template_filter(common.url.noproto)
app.csrf_token = app.jinja_env.globals["csrf_token"]
app.jinja_env.globals["min"] = min
app.jinja_env.globals["max"] = max
app.jinja_env.globals["static_url"] = www.utils.static_url
app.jinja_env.globals["cycler"] = www.utils.CyclerExt

app.register_blueprint(www.api_v2.blueprint, url_prefix="/api/v2")

__all__ = ['app']

if __name__ == '__main__':
	app.env = "development"
	app.run(debug=True, threaded=False, use_reloader=False)
Exemple #4
0
#!/usr/bin/env python3
from common import utils
from common.config import config
from www.server import app
import www.index
import www.help
import www.notifications
import www.stats
import www.login
import www.archive
import www.votes
import www.commands
import www.spam
import www.botinteract
import www.history
import www.api
import www.quotes

app.secret_key = config["session_secret"]
app.add_template_filter(utils.nice_duration)
app.add_template_filter(utils.ucfirst)
app.add_template_filter(utils.timestamp)
app.csrf_token = app.jinja_env.globals["csrf_token"]
app.jinja_env.globals["min"] = min
app.jinja_env.globals["max"] = max

__all__ = ['app']

if __name__ == '__main__':
	app.run(debug=True)