This a personal blog power by Flask.
###Backend:
- Flask
- Flask-SQLAlchemy ORM for MySQL
- Flask-WTF
- Flask-Login
- Flask-Admin
- Flask-Script
###Installation
-
Git clone the repostory.
-
pip install -r requirement.txt
command . -
Change the database settings inside
app/__init__.py
file. -
Run the migration by this command
$ python manage.py db init $ python manage.py db migrate $ python manage.py db upgrade
-
Run the server by this command
$ python manage.py runserver