Is that possible to add more static paths for my local dev Flask instance? I want to have default static folder for storing js/css/images files for the site and
static
You can use a Blueprint with its own static dir http://flask.pocoo.org/docs/blueprints/
Blueprint
blueprint = Blueprint('site', __name__, static_url_path='/static/site', static_folder='path/to/files') app.register_blueprint(blueprint)
Template
{{ url_for('site.static', filename='filename') }}