Created
July 26, 2016 06:14
-
-
Save mgd020/375d75a0a180c32cd035a70d2166e738 to your computer and use it in GitHub Desktop.
movable django app template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default_app_config = __name__ + '.apps.MyAppConfig' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.apps import AppConfig | |
class MyAppConfig(AppConfig): | |
name = __name__.rsplit('.', 1)[0] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment