├── .gitignore ├── README.md ├── app ├── __init__.py ├── extensions.py ├── main │ ├── __init__.py │ └── routes.py ├── models │ ├── post.py │ └── question.py ├── posts │ ├── __init__.py │ └── routes.py ├── questions │ ├── __init__.py │ └── routes.py └── templates │ ├── base.html │ ├── index.html │ ├── posts │ ├── categories.html │ └── index.html │ └── questions │ └── index.html └── config.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/extensions.py -------------------------------------------------------------------------------- /app/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/main/__init__.py -------------------------------------------------------------------------------- /app/main/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/main/routes.py -------------------------------------------------------------------------------- /app/models/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/models/post.py -------------------------------------------------------------------------------- /app/models/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/models/question.py -------------------------------------------------------------------------------- /app/posts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/posts/__init__.py -------------------------------------------------------------------------------- /app/posts/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/posts/routes.py -------------------------------------------------------------------------------- /app/questions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/questions/__init__.py -------------------------------------------------------------------------------- /app/questions/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/questions/routes.py -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/posts/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/templates/posts/categories.html -------------------------------------------------------------------------------- /app/templates/posts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/templates/posts/index.html -------------------------------------------------------------------------------- /app/templates/questions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/app/templates/questions/index.html -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adyouri/large-flask-app-template/HEAD/config.py --------------------------------------------------------------------------------