Skip to content

A Flask blog application with user management

Notifications You must be signed in to change notification settings

areal060781/blog-application

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Blog application

A blog application made with Flask

  • Post CRUD
  • User registration, login, logout and reset password using tokens
  • Error pages
  • Email service
  • Upload files and resize pictures

Requirements

  • Python 3.7
  • Virtualenv

Installation

Inside the project folder create the environment, activate it and install the dependencies

python3 -m venv venv
. twittervotes/bin/activate
pip install -r requirements.txt

Copy the config file and edit the variables

cp flaskblog/config-example.json config.json

Run the application

(venv) $ flask run