Skip to content

IlyaMZP/bluelog

 
 

Repository files navigation

Bluelog

A blue blog.

Example application for Python Web Development with Flask (《Flask Web 开发实战》).

Demo: https://mango.vg

Screenshot

Installation

clone:

$ git clone --recurse-submodules -j8 https://github.com/IlyaMZP/bluelog.git
$ cd bluelog

create & activate virtual env then install dependency:

with venv/virtualenv + pip:

$ python -m venv env  # use `virtualenv env` for Python2, use `python3 ...` for Python3 on Linux & macOS
$ source env/bin/activate  # use `env\Scripts\activate` on Windows
$ pip install -r requirements.txt

or with Pipenv:

$ pipenv install --dev
$ pipenv shell

To generate fake data and run:

$ flask init
$ flask forge
$ flask run
* Running on http://127.0.0.1:5000/

License

This project is licensed under the MIT License (see the LICENSE file for details).

About

A blog engine built with Flask.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 66.2%
  • HTML 32.4%
  • Other 1.4%