https://github.com/npodlozhniy/microblog
Simple social network web application
https://github.com/npodlozhniy/microblog
codecov flask sqlalchemy travis-ci
Last synced: 2 months ago
JSON representation
Simple social network web application
- Host: GitHub
- URL: https://github.com/npodlozhniy/microblog
- Owner: NPodlozhniy
- License: mit
- Created: 2020-01-11T11:58:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-14T13:28:00.000Z (almost 5 years ago)
- Last Synced: 2025-01-29T10:16:37.716Z (over 1 year ago)
- Topics: codecov, flask, sqlalchemy, travis-ci
- Language: Python
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/NPodlozhniy/Microblog)
[](https://codecov.io/gh/NPodlozhniy/Microblog)
# Microblog
Final project for course of Principles, Practices, and Patterns of Software Design of MIPT master's degree program.
This is small application written in **Python** with using **Flask** framework
A logged-in user can make posts, read other user's posts, and follow them;
To learn more, install the app!
* Author: Podlozhnyy N., student at MIPT and data scientist at Tinkoff Group. The work is based on https://learn.miguelgrinberg.com/
* The application is not deployed on a real server. To install app, clone the repository to your personal computer.
*Attention! Python 3 must be installed. Flask and it's packages сould be installed with:*
```
$ pip install flask
$ pip install flask- (All required packages can be found in microblog/app/__init__.py)
```
* To start the application run the following commands:
```
$ export FLASK_APP=microblog.py ('set' instead of 'export' for Windows)
$ flask run
```
* To start the testing run this:
```
$ python tests.py
```