ConfigurationΒΆ

In your project :

# settings

# install required apps
INSTALLED_APPS = [
    ...
    # required apps to work with terra_accounts
    'rest_framework',
    'rest_framework_jwt',
    'terra_settings',
    # terra_accounts app
    'terra_accounts',
    ...
]

TERRA_USER_STRING_FORMAT = ''  # python doted path to function that return user string formatted

# urls

urlpatterns = [
    ...
    # required apps to work with terra_accounts
    path('', include('terra_settings.urls')),
    # terra_accounts app
    path('', include('terra_accounts.urls')),
    ...
]

You can customize default url and namespace by including terra_accounts.views directly

# ADMIN :

you can disable and / or customize admin

  • BACKWARD compatibility

# Password reset