An easy way to setup a database site.
Project description
CosmicDB Django App
Install
Initial setup
virtualenv demoenv --no-site-packages
demoenv\Scripts\activate
pip install cosmicdb
django-admin startproject demo
Usage
Add cosmicdb and requirements to your INSTALLED_APPS setting like this (your app must be first to override)
INSTALLED_APPS = (
'YOURAPPHERE',
'cosmicdb',
'dal',
'dal_select2',
'crispy_forms',
'django_tables2',
... (rest of django apps)
)
Add cosmicdb.urls to your urls.py like this (put cosmicdb urls last)
from django.conf.urls import url, include
urlpatterns = [
...
url(r'^', include('cosmicdb.urls')),
]
Add cosmicdb settings to your settings.py like this::
LANGUAGE_CODE = 'en-au'
COSMICDB_SITE_TITLE = 'Demo Site'
COSMICDB_ALLOW_SIGNUP = True
AUTH_USER_MODEL = 'cosmicdb.User'
LOGIN_URL = '/login/'
CRISPY_TEMPLATE_PACK = 'bootstrap3'
DJANGO_TABLES2_TEMPLATE = 'django_tables2/bootstrap-responsive.html'
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = 'test@test.com'
EMAIL_HOST_PASSWORD = 'testpassword'
DEFAULT_FROM_EMAIL = EMAIL_HOST_USER
DEFAULT_FROM_EMAIL_NAME = COSMICDB_SITE_TITLE
Run
python manage.py migrate
python manage.py collectstatic
python manage.py createsuperuser
Dev Notes
install required packages for packaging
pip install setuptools twine wheel
adjust cosmicdb/init.py for version number
python setup.py sdist bdist_wheel
replace the following line with version number
twine upload dist/cosmicdb-VERSION_NUMBER*
twine upload dist/cosmicdb-0.0.1*
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cosmicdb-0.0.22.tar.gz
(4.4 MB
view details)
Built Distribution
File details
Details for the file cosmicdb-0.0.22.tar.gz
.
File metadata
- Download URL: cosmicdb-0.0.22.tar.gz
- Upload date:
- Size: 4.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1eae3f6977672e021c5e592ccb51f5aaf86948ae41a7e13096938cefb134f71 |
|
MD5 | ef5eb7e7b6bbe025ac06ca3d90c9ac50 |
|
BLAKE2b-256 | 2cf542c58216844c8e0797498e586823bbac43c2752f4640abc0101460b9fbba |
File details
Details for the file cosmicdb-0.0.22-py3-none-any.whl
.
File metadata
- Download URL: cosmicdb-0.0.22-py3-none-any.whl
- Upload date:
- Size: 4.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5ce685d38c53cf5a622f06b1b0b53d7af80e4e50c85d966a754403d9bbeeda0 |
|
MD5 | 742075a65c60d2c6c0351a91c2257f7e |
|
BLAKE2b-256 | dcb1d59364994e48184652376349ffb0187e6188b3f8860422034158f9bf5eb7 |