Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/areal060781/blog-application
A Flask blog application with user management
https://github.com/areal060781/blog-application
flask flask-login flask-mail sqlalchemy sqlite virtualenv wtforms-flask
Last synced: 1 day ago
JSON representation
A Flask blog application with user management
- Host: GitHub
- URL: https://github.com/areal060781/blog-application
- Owner: areal060781
- Created: 2020-05-29T13:32:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T06:07:50.000Z (almost 2 years ago)
- Last Synced: 2023-03-08T01:11:54.220Z (over 1 year ago)
- Topics: flask, flask-login, flask-mail, sqlalchemy, sqlite, virtualenv, wtforms-flask
- Language: HTML
- Homepage:
- Size: 10.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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
```sh
python3 -m venv venv
. twittervotes/bin/activate
pip install -r requirements.txt
```Copy the config file and edit the variables
```sh
cp flaskblog/config-example.json config.json
```Run the application
```sh
(venv) $ flask run
```