Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 501 Bytes

File metadata and controls

25 lines (19 loc) · 501 Bytes

Flask_Hello

This is just a simple Flask application.

It demonstrates how to structure a Flask-REST app in a reasonable way, and how to use SQLAlchemy in the app.

The general structure is:

.
├── run.py
│
├── hello
│   ├── __init__.py
│   ├── app.py
│   ├── models
│   │   ├── __init__.py
│   │   └── people.py
│   └── resources
│       ├── __init__.py
│       └── endpoints.py

.