All Projects → hackersandslackers → Flask Blueprint Tutorial

hackersandslackers / Flask Blueprint Tutorial

Licence: mit
📘 📦 Structure your Flask apps in a scalable and intelligent way using Blueprints.

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Flask Blueprint Tutorial

Plotlydash Flask Tutorial
📊📉Embed Plotly Dash into your Flask applications.
Stars: ✭ 265 (+63.58%)
Mutual labels:  flask, tutorial
Eve Building Restful Mongodb Backed Apis Course
Course materials and handouts for EVE: Building RESTful MongoDB-backed APIs course
Stars: ✭ 53 (-67.28%)
Mutual labels:  flask, tutorial
Deep Learning In Production
In this repository, I will share some useful notes and references about deploying deep learning-based models in production.
Stars: ✭ 3,104 (+1816.05%)
Mutual labels:  flask, tutorial
Flask Sqlalchemy Tutorial
🐍 ℹ️ Create and manage data in your Flask app via a SQL database.
Stars: ✭ 162 (+0%)
Mutual labels:  flask, tutorial
Flask Wtform Tutorial
📝😎Tutorial to implement forms in your Flask app.
Stars: ✭ 84 (-48.15%)
Mutual labels:  flask, tutorial
Flask Tutorial
A tutorial to build your first flask application
Stars: ✭ 58 (-64.2%)
Mutual labels:  flask, tutorial
Flask Tutorial
Flask 入门教程:使用 Python 和 Flask 开发你的第一个 Web 程序
Stars: ✭ 365 (+125.31%)
Mutual labels:  flask, tutorial
Get Started Python
A Python application and tutorial that use Flask framework to provide a REST API to receive requests from the UI. The API then persists the data to a Cloudant database.
Stars: ✭ 104 (-35.8%)
Mutual labels:  flask, tutorial
Deploying Flask To Heroku
Deploying a Flask App To Heroku Tutorial
Stars: ✭ 81 (-50%)
Mutual labels:  flask, tutorial
Flask Session Tutorial
💾 🙇 Example Flask project for implementing Flask-Session with Redis.
Stars: ✭ 69 (-57.41%)
Mutual labels:  flask, tutorial
Flask Tutorial
这个项目已经很久很久了, 不推荐看, 不过倒是可以进群叨逼叨一下. 🚗 交流群:630398887
Stars: ✭ 91 (-43.83%)
Mutual labels:  flask, tutorial
30 Days Of Python
Learn Python for the next 30 (or so) Days.
Stars: ✭ 1,748 (+979.01%)
Mutual labels:  flask, tutorial
Boost graph cookbook 1
Boost.Graph Cookbook 1: Basics
Stars: ✭ 157 (-3.09%)
Mutual labels:  tutorial
Pervane
Plain text file based note taking and knowledge base building tool, markdown editor, simple browser IDE.
Stars: ✭ 159 (-1.85%)
Mutual labels:  flask
Flask Simpleldap
LDAP authentication extension for the Flask web framework
Stars: ✭ 156 (-3.7%)
Mutual labels:  flask
Dippl
The Design and Implementation of Probabilistic Programming Languages
Stars: ✭ 156 (-3.7%)
Mutual labels:  tutorial
Flask Restless Security
Concise skeleton for development of Flask, Flask-Restless, SQLAlchemy, JWT based REST APIs.
Stars: ✭ 159 (-1.85%)
Mutual labels:  flask
Docker Espanol
Un tutorial Docker en español. Basado en el libro Docker Cookbook de O'reilly
Stars: ✭ 158 (-2.47%)
Mutual labels:  tutorial
Rakuguide
The Raku Guide
Stars: ✭ 155 (-4.32%)
Mutual labels:  tutorial
Linebottemplate
A simple Golang LINE bot Template and tutorial how to setup on Heroku for LINE bot API
Stars: ✭ 156 (-3.7%)
Mutual labels:  tutorial

Flask Blueprint Tutorial

Python Flask Flask-Assets GitHub Last Commit GitHub Issues GitHub Stars GitHub Forks

Flask Blueprint Tutorial

Structure your Flask apps in a scalable and intelligent way using Blueprints.

Getting Started

Get set up locally in two steps:

Environment Variables

Replace the values in .env.example with your values and rename this file to .env:

  • FLASK_APP: Entry point of your application; should be wsgi.py.
  • FLASK_ENV: The environment in which to run your application; either development or production.
  • SECRET_KEY: Randomly generated string of characters used to encrypt your app's data.
  • LESS_BIN (optional for static assets): Path to your local LESS installation via which lessc.
  • ASSETS_DEBUG (optional): Debug asset creation and bundling in development.
  • LESS_RUN_IN_DEBUG (optional): Debug LESS while in development.
  • COMPRESSOR_DEBUG (optional): Debug asset compression while in development.

Remember never to commit secrets saved in .env files to Github.

Installation

Get up and running with make deploy:

$ git clone https://github.com/hackersandslackers/flask-blueprint-tutorial.git
$ cd flask-blueprint-tutorial
$ make deploy

Hackers and Slackers tutorials are free of charge. If you found this tutorial helpful, a small donation would be greatly appreciated to keep us in business. All proceeds go towards coffee, and all coffee goes towards more content.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].