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.
- Host: GitHub
- URL: https://github.com/guilefoylegaurav/flickblog
- Owner: guilefoylegaurav
- Created: 2020-06-08T11:58:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-15T21:05:36.000Z (over 3 years ago)
- Last Synced: 2023-06-17T06:25:13.473Z (about 3 years ago)
- Topics: flask, mvc-architecture, python, python3
- Language: HTML
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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).