Skip to content

Instantly share code, notes, and snippets.

Created December 22, 2014 14:29
Show Gist options
  • Save anonymous/19fca50da92974fe4d91 to your computer and use it in GitHub Desktop.
Save anonymous/19fca50da92974fe4d91 to your computer and use it in GitHub Desktop.

django-app-manage

manage.py for your reusable Django applications.

Quickstart

Assuming you have an application named my_awesome_app, add the following to the root of the project (aka next to setup.py) in a file called manage.py:

from django.conf.urls import patterns

import app_manage

urlpatterns = patterns('')

if __name__ == '__main__':
    app_manage.main(
        ['my_awesome_app'],
        DATABASES=app_manage.DatabaseConfig(
            env='DATABASE_URL',
            arg='--db-url',
            default='sqlite://localhost/local.sqlite'
        ),
        ROOT_URLCONF='manage',
        STATIC_ROOT=app_manage.TempDir(),
        MEDIA_ROOT=app_manage.TempDir(),
    )

You can now run Django commands such as test or makemssages via that manage.py file.

@collinanderson
Copy link

use urlpatterns = [] as patterns() is deprecated in django 1.8.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment