An open API service indexing awesome lists of open source software.

https://github.com/flytrap/flytrap-auth


https://github.com/flytrap/flytrap-auth

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

Django base package
==============
## adduser

```
url('^api/auth/', include('flytrap.auth.account.token.urls'))
```

## set auth

```
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': (
'flytrap.auth.account.token.auth.TokenAuthentication',
),
```

## don't signup
add to setting

```
SHOW_SIGNUP = False
```