create postgres database
Project description
Installation
$ [sudo] pip install django-postgres-createdb
Examples
example 1 - management command:
settings.py
INSTALLED_APPS+=['django_postgres_createdb']
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': os.getenv('DB_NAME'),
'USER': os.getenv('DB_USER'),
'PASSWORD': os.getenv('DB_PASS'),
'HOST': os.getenv('DB_HOST'),
'PORT': os.getenv('DB_PORT'),
}
}
$ python manage.py createdb
$ python manage.py createdb "default"
example 2 - python module cli:
settings.py
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': os.getenv('DB_NAME'),
'USER': os.getenv('DB_USER'),
'PASSWORD': os.getenv('DB_PASS'),
'HOST': os.getenv('DB_HOST'),
'PORT': os.getenv('DB_PORT'),
}
}
$ export DJANGO_SETTINGS_MODULE=settings
$ python -m django_postgres_createdb
$ python -m django_postgres_createdb "default"
Related
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
File details
Details for the file django-postgres-createdb-2020.7.1.tar.gz
.
File metadata
- Download URL: django-postgres-createdb-2020.7.1.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/47.3.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2823f398962e1555248b29e0153aeb4abbcb2bada39444d4363adb34e6ae32cc |
|
MD5 | b9956406fb1474a106313ab5380f8c54 |
|
BLAKE2b-256 | 363d351bc792f43a7d2e68b618469e1c027be0ff9279943ac5add50d7fed33bf |