Metadata-Version: 2.1
Name: pginit
Version: 0.5
Summary: initialize postgres for django project
Home-page: https://github.com/Fak3/pginit
Author: Roman Evstifeev
Author-email: someuniquename@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Android
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities

This command-line tool reads django settings, then connects to configured postgresql server as superuser, and tries to create the database and user with password, according to the django settings.

## Installation

```
pip install pginit
```

## Usage

You can either set `DJANGO_SETTINGS_MODULE` environment variable, or specify settings module path in the first command-line argument.

```bash
pginit path.to.settings
```


