mirror of
				https://github.com/Tivix/django-rest-auth.git
				synced 2025-11-04 01:27:36 +03:00 
			
		
		
		
	Updates README
This commit is contained in:
		
							parent
							
								
									7f17e18e3e
								
							
						
					
					
						commit
						aafd10fcce
					
				
							
								
								
									
										29
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										29
									
								
								README.md
									
									
									
									
									
								
							| 
						 | 
				
			
			@ -2,3 +2,32 @@
 | 
			
		|||
[](https://app.circleci.com/github/iMerica/dj-rest-auth/pipelines)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
Drop-in API endpoints for authentication in Django Rest Framework.  
 | 
			
		||||
 | 
			
		||||
### Requirements
 | 
			
		||||
- Django 2 or 3.
 | 
			
		||||
- Python 3
 | 
			
		||||
 | 
			
		||||
### Setup
 | 
			
		||||
 | 
			
		||||
Install package
 | 
			
		||||
 | 
			
		||||
    pip install dj-rest-auth
 | 
			
		||||
    
 | 
			
		||||
Add `dj_rest_auth` app to INSTALLED_APPS in your django settings.py:
 | 
			
		||||
 | 
			
		||||
    INSTALLED_APPS = (
 | 
			
		||||
        ...,
 | 
			
		||||
        'rest_framework',
 | 
			
		||||
        'rest_framework.authtoken',
 | 
			
		||||
        ...,
 | 
			
		||||
        'rest_auth'
 | 
			
		||||
    )
 | 
			
		||||
    
 | 
			
		||||
Add URL patterns
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    urlpatterns = [
 | 
			
		||||
        url(r'^dj-rest-auth/', include('dj_rest_auth.urls'))
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user