معرفی شرکت ها


django-createsuperuser-signal-0.0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Django app to create superuser from environment after migrations
ویژگی مقدار
سیستم عامل -
نام فایل django-createsuperuser-signal-0.0.1
نام django-createsuperuser-signal
نسخه کتابخانه 0.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Babis Kaidos
ایمیل نویسنده ckaidos@intracom-telecom.com
آدرس صفحه اصلی https://github.com/BabisK/django-createsuperuser
آدرس اینترنتی https://pypi.org/project/django-createsuperuser-signal/
مجوز Apache Software License
# django-createsuperuser Django app that implements a signal to create super user from environment variables on migration. Useful for Docker, Kubernetes etc. If the user already exists it will do nothing. ## Installation Simply download from Pypi: ```bash pip install django_superuser ``` ## Usage This app needs to register in the `INSTALLED_APPS` list in your Django settings: ```python INSTALLED_APPS = [ ... "createsuperuser", ... ] ``` As it is, it will do nothing. You need to define 4 environment variables through which the superuser will be created during the migration stage (uses the post_migrate signal). | Environment Variable | Description | | -------------------- | ----------- | | DJANGO_SUPERUSER_CREATE | Enables the process of creating the superuser. Must be true or false (case insensitive) | | DJANGO_SUPERUSER_USERNAME | The username of the superuser account to create | | DJANGO_SUPERUSER_EMAIL | The email of the superuser account | | DJANGO_SUPERUSER_PASSWORD | The password of the superuser account | After defining these variables, the superuser will be created the next time you perform a migration (even if no migrations are applied) ```bash export DJANGO_SUPERUSER_CREATE=true export DJANGO_SUPERUSER_USERNAME=admin export DJANGO_SUPERUSER_EMAIL=admin@example.com export DJANGO_SUPERUSER_PASSWORD=admin python manage.py migrate ``` You can use this to create the user when launching your django project in Docker by passing the variables in the command. Or if you are using Kuberenetes you can add them in a `Secret` and pass them in the pod via `envFrom`. Or however the environment variables fit in your workflow.


نیازمندی

مقدار نام
>=1.8 Django


نحوه نصب


نصب پکیج whl django-createsuperuser-signal-0.0.1:

    pip install django-createsuperuser-signal-0.0.1.whl


نصب پکیج tar.gz django-createsuperuser-signal-0.0.1:

    pip install django-createsuperuser-signal-0.0.1.tar.gz