flask-angular-blog icon indicating copy to clipboard operation
flask-angular-blog copied to clipboard

blog implemented in flask with angular frontend

trafficstars

##Flask-Angular-Blog

a fun little blog with a Flask backend and AngularJs frontend. try out the demo app on heroku or create your own with the one click deploy button here

####TravisCI Build Status

Build Status

to use, first install everything in a virtualenv:

virtualenv venv
. ./venv/bin/activate
pip install -I -r requirements.txt

then, just create a file called local_settings.py and just add a class for your sensitive settings ie:

class LocalConfig(object):
    SECRET_KEY = 'somesecret'
    DATABASE_URI = 'sqlite:///test.db

Dont forget the database part

then run

python phlaskr/seed_db.py

You setup your DATABASE_URI earlier right?

ok... then, (as long as you installed everything inside of a virtualenv (lets hope so) ) to get things started you just need to run:

honcho start