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',
'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.CosmicUser'
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.32*
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.33.tar.gz
(4.4 MB
view details)
Built Distribution
File details
Details for the file cosmicdb-0.0.33.tar.gz
.
File metadata
- Download URL: cosmicdb-0.0.33.tar.gz
- Upload date:
- Size: 4.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fc6aee76a25e082a6c164047509886ee3b33d61730a1637f40a8de5f804da85 |
|
MD5 | 990ab3dcabd13641bd5c43f6d69e6dfd |
|
BLAKE2b-256 | c8661249657a5157928d7362f6950f3236df9bed7ec17514b162d73bb3de61de |
File details
Details for the file cosmicdb-0.0.33-py3-none-any.whl
.
File metadata
- Download URL: cosmicdb-0.0.33-py3-none-any.whl
- Upload date:
- Size: 4.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42490457e901a9e9f9e45093af8ac6482ed0f3264c7ad6da825b3315ce991a5a |
|
MD5 | 311a3f7ac05133f683a79c0b019b35cf |
|
BLAKE2b-256 | 22baa198c9feb837fbb382f1920b10fb9a35ee4f2b7e936b00399f14fa2c76bf |