-
Notifications
You must be signed in to change notification settings - Fork 24
How to add an app to the Devilry repo
Espen Angell Kristiansen edited this page May 12, 2015
·
7 revisions
WARNING: This page is outdated
-
Create an app by copying
src/devilry_exampleapp/
-
Add the app to
development-base.cfg
:[sources] ... myapp = fs myapp
-
Add the app to
INSTALLED_APPS
insrc/devilry_developer/devilry_developer/settings/base.py
. -
Add a simple view (
views.py
). -
Add a url config (
urls.py
) to your app. -
Add your urls to
src/devilry_developer/devilry_developer/dev_urls.py
:... url(r'^myapp/', include('myapp.urls')), ...
-
Move the contents of
src/myapp/
into the root of a new Git repo. -
Change the
[sources]
-definition from step 2 above to something like:[sources] ... myapp = git git://example.com/git/some.package.git