https://github.com/pyramation/webvize
https://github.com/pyramation/webvize
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pyramation/webvize
- Owner: pyramation
- Created: 2011-06-20T06:57:56.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2011-07-25T15:26:43.000Z (almost 15 years ago)
- Last Synced: 2025-06-24T23:05:05.242Z (11 months ago)
- Language: JavaScript
- Homepage:
- Size: 766 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
This is a simple cms built in Django.
Make sure to add a contants.py file containing your sensitive information:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'your_db',
'USER': 'username',
'PASSWORD': 'password',
'HOST': '',
'PORT': '',
}
}
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = 'noreply@yourdomain.com'
EMAIL_HOST_PASSWORD = 'password'
EMAIL_PORT = 587