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: 4 months 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T06:07:50.000Z (over 2 years ago)
- Last Synced: 2025-01-19T23:36:32.434Z (6 months 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
```