A basic blog application called Flaskr
-
Clone this repository
git clone https://github.com/DevxPi/flask_blog.git
-
Create virtualenv and activate it.
# linux python3 -m venv env source env/bin/activate #or # windows py -m venv env .\env\Scripts\activate
-
run db command
flask --app flaskr init-db
flask --app flaskr run --debug
The application serves on port:5000
- A detail view to show a single post. Click a post’s title to go to its page.
- Like / unlike a post.
- Comments.
- Tags. Clicking a tag shows all the posts with that tag.
- A search box that filters the index page by name.
- Paged display. Only show 5 posts per page.
- Upload an image to go along with a post.
- Format posts using Markdown.
- An RSS feed of new posts.
- Add markdown support