An open API service indexing awesome lists of open source software.

https://github.com/guilefoylegaurav/flickblog

A CRUD blog with forget password recovery and optimized image upload features built using the web application framework Flask.
https://github.com/guilefoylegaurav/flickblog

flask mvc-architecture python python3

Last synced: 2 months ago
JSON representation

A CRUD blog with forget password recovery and optimized image upload features built using the web application framework Flask.

Awesome Lists containing this project

README

          

# Flask Blog
## Frontend
Nothing fancy, good old Bootstrap CSS.

## Backend
Used Flask, and sqllite db. Flask-SQLAlchemy provides an ORM for the db.

## How to Use
Head to the root directory. Create virtual environment. Start Python from command line. Then:

```
>>> from flask_blog import db
>>> db.create_all()
>>> exit()
```
After that,

```
>>> python run.py
```
Head to [localhost:5000](https://localhost:5000).