mirror of
				https://github.com/krislamo/DJ-BaseSite
				synced 2025-10-31 10:08:34 +00:00 
			
		
		
		
	
			
				
					
						
					
					21869db4c390e8a6720bee9ea87896b5cd620c2b
				
			
			
		
	DJ-BaseSite
DJ-BaseSite is a base Django development website project that adds basic user interaction to the site. Features include: The Django admin site, a login and logout system, a user registration system with required activation (via email), deactivation (an option during activation) and account recovery.
This project is currently in the Alpha phase. Therefore it is suggested you thoroughly read and test when forking, etc.
DJ-BaseSite was written with Python 2.7 and Django 1.4 on Windows 7 Home Premium 64 bit (Service Pack 1)
License
DJ-BaseSite is released under the New BSD License, refer to the LICENSE file in the root of the repository before continuing.
Change Log
0.7 (Oct 20, 2012) SHA: dce89a3acf
- Added the deactivation and account recovery systems.
- Variable EMAIL_MESSAGEwas replaced withACTIVATE_EMAIL&RECOVERY_EMAILwas added.
- The responsevariable was changed in all views to the correct spelling. derp.
- Function clean_emailRE()was added tovalidation.py
- The function UserActivationKey()inviews.pywas renamed toKeyGen()
0.5 (Oct 13, 2012) SHA: 80cdb11749
- login / registration system with Django's default authentication backend
- activation system (deactivation system not implemented)
- reCAPTCHA support for registration
Quick Start
- Open up the config.txtfile and change the data underCUSTOM VARIABLESto your information. The configuration is explained below.
- Execute the SetupProject.pyscript and enter a project name, it will replicate the project out of/myproject/to/yourproject/with your information.
- Run syncdb via terminal/console in the root of the project: python manage.py syncdb- Windows users will need to add the path of their Python 2.7 installation (example: C:/Python27/) to the path variable
 
- Windows users will need to add the path of their Python 2.7 installation (example: 
- Run the development server: python manage.py runserver
You should be done at this point. So check out your new website at http://localhost:8000 or http://127.0.0.1:8000 in your browser.
Configuration
- baseurl- Used to create activation, deactivation and recovery links
 
- admin_name/email(official documentation)- Adds a name and email to the ADMINS tuple in settings. On an error your website will email you logged errors.
 
- secret_key(official documentation)- A secure string used to provide cryptographic signing. It is automatically added to a default Django project in settings.
 
- captcha_publickey/privatekey- DJ-BaseSite uses reCAPTCHA to prevent bots from creating accounts, so you'll need to get a private and public key from the website
 
- HOSTsmtp- The SMTP server
 
- HOSTemail- The email address
 
- HOSTpass- HOSTemail's password
 
Description
				A customizable Django login and register system with required email activation. 
						
						
						
					Languages
				
				
								
								
									Python
								
								80.8%
							
						
							
								
								
									HTML
								
								14%
							
						
							
								
								
									CSS
								
								5%
							
						
							
								
								
									Batchfile
								
								0.2%