Skip to content
Snippets Groups Projects
Commit da8ab512 authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Create project skeleton.

parent af4edbdb
Branches
Tags
No related merge requests found
FLASK_APP=opaque.py
FLASK_ENV=development
__pycache__
venv
from flask import Flask
def create_app():
app = Flask(__name__)
return app
import os
class Config:
SECRET_KEY = os.environ.get('SECRET_KEY') or 'hard to guess string'
from app import create_app
app = create_app
Flask==1.0.3
python-dotenv==0.10.3
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment