A blog using Flask, MongoDB, and a little bit of JavaScript. You can post content or enjoy reading other people's content.
-
As a normal user :
- Read all posts in application
- Search in posts with categories and tags
-
As logged in user :
- Create, delete and deactivate your posts
- Edit your posts (you can't change the image and post's category)
- Like or dislike posts
$ git clone https://github.com/erfanghorbanee/Quote.git
$ cd Quote
$ python3 -m venv venv
$ . venv/bin/activate.
> py -3 -m venv venv
> venv\Scripts\activate.bat
$ pip3 install -e .
$ export FLASK_APP=quote
$ export FLASK_ENV=development
$ flask run
> set FLASK_APP=quote
> set FLASK_ENV=development
> flask run
Open https://127.0.0.1:5000 in your browser.