Skip to main content

create postgres database

Project description

Installation

$ [sudo] pip install django-postgres-createdb

Commands

command help
python manage.py createdb create postgres database

Executable modules

usage __doc__
python -m django_postgres_createdb [alias] create postgres database

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 projects

django-readme-generator

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-postgres-createdb-2019.8.17.tar.gz (2.3 kB view details)

Uploaded Source

File details

Details for the file django-postgres-createdb-2019.8.17.tar.gz.

File metadata

  • Download URL: django-postgres-createdb-2019.8.17.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/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.3

File hashes

Hashes for django-postgres-createdb-2019.8.17.tar.gz
Algorithm Hash digest
SHA256 76d0eab999a79fa676f90200d8d2d65d4a5d894c8409f1383c3b8e9a4edcd016
MD5 c902c8fc95d2f05771921a57c642c395
BLAKE2b-256 8b054b2c0357a4546b0d9c56a26353bb6671b512b1d4cee8128139db495c22bf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page