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

https://github.com/pyramation/webvize


https://github.com/pyramation/webvize

Last synced: 11 months ago
JSON representation

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