{% extends 'common/base.html' %} {% block title %}Welcome aboard{% endblock %} {% block content %}

{{ self.title() }}

Congratulations on your Shake-powered app!

Here's what to do next:

  1. See the README.md for info about this application structure.

  2. Add new bundles

    Bundles are related models, URLs and views.

    Create one with the command shake add yourbundle.

  3. Set up your routes.

    Routes are set up in urls.py

    Your bundle's internal routes are defined in yourbundle/__init__.py

  4. Create your database.

    Run “python manage.py syncdb” to create your database. If you already've a database created, edit the SQLALCHEMY_URI setting in settings/__init__.py with your username and password.

  5. Edit this file (views/index.html) or replace it with one of your own.

Go ahead, Shake things up!
{% endblock %} {% block head %} {% endblock %}