From f7b57c931b19d72a1ce4527b2467fb65fd5df177 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 9 Apr 2020 21:33:05 +0200 Subject: freat: create templates files --- frest/templates/app.txt | 58 ++++++++++++++++++++++++++++++++++++++++++++ frest/templates/database.txt | 4 +++ frest/templates/mail.txt | 11 +++++++++ frest/templates/wsgi.txt | 4 +++ 4 files changed, 77 insertions(+) create mode 100644 frest/templates/app.txt create mode 100644 frest/templates/database.txt create mode 100644 frest/templates/mail.txt create mode 100644 frest/templates/wsgi.txt diff --git a/frest/templates/app.txt b/frest/templates/app.txt new file mode 100644 index 0000000..9719b87 --- /dev/null +++ b/frest/templates/app.txt @@ -0,0 +1,58 @@ +from flask import Flask +from frest.auth.routes import api as api_users +from flask import make_response, jsonify +from database import db +from database import config as db_config +from mail import mail +from mail import config as mail_config +from flask_sqlalchemy import SQLAlchemy +from utils import http_call +from flask_cors import CORS +import os + +app = Flask(__name__) +app.config["SQLALCHEMY_DATABASE_URI"] = db_config["DATABASE_URI"] +app.config["DEBUG"] = os.getenv("FREST_DEBUG", True) +app.config["CORS_HEADERS"] = "Content-Type" +app.config["MAIL_SERVER"] = mail_config["SERVER"] +app.config["MAIL_PORT"] = mail_config["PORT"] +app.config["MAIL_USE_TLS"] = mail_config["USE_TLS"] +app.config["MAIL_USERNAME"] = mail_config["USERNAME"] +app.config["MAIL_DEFAULT_SENDER"] = mail_config["DEFAULT_SENDER"] +app.config["MAIL_PASSWORD"] = mail_config["PASSWORD"] + +cors = CORS(app, resources={r"/.*": {"origins": "*"}}) +db.app = app +db.init_app(app) +mail.init_app(app) +app.register_blueprint(api_users) + + +@app.errorhandler(404) +def not_found(error): + return http_call("Not found", 404) + + +@app.errorhandler(400) +def bad_request(error): + return http_call("Bad request", 400) + + +@app.errorhandler(405) +def method_not_allowed(error): + return http_call("Method not allowed", 405) + + +@app.errorhandler(403) +def forbiddend(error): + return http_call("Forbidden", 403) + + +@app.errorhandler(500) +def internal(error): + return http_call("Internal error", 500) + + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000) + diff --git a/frest/templates/database.txt b/frest/templates/database.txt new file mode 100644 index 0000000..176cd52 --- /dev/null +++ b/frest/templates/database.txt @@ -0,0 +1,4 @@ +from flask_sqlalchemy import SQLAlchemy + +db = SQLAlchemy() +config = {"DATABASE_URI": "sqlite:///database.db"} diff --git a/frest/templates/mail.txt b/frest/templates/mail.txt new file mode 100644 index 0000000..e553525 --- /dev/null +++ b/frest/templates/mail.txt @@ -0,0 +1,11 @@ +from flask_mail import Mail + +mail = Mail() +config = { + "SERVER": "", + "PORT": 587, + "USE_TLS": True, + "USERNAME": "", + "DEFAULT_SENDER": "", + "PASSWORD": "", +} diff --git a/frest/templates/wsgi.txt b/frest/templates/wsgi.txt new file mode 100644 index 0000000..6026b0f --- /dev/null +++ b/frest/templates/wsgi.txt @@ -0,0 +1,4 @@ +from app import app + +if __name__ == "__main__": + app.run() -- cgit v1.2.3-18-g5258