Django
Integrate Bitcoin payments into your Django project.
Last updated
Integrate Bitcoin payments into your Django project.
Django is one of the most popular web frameworks. We're building a Django app for easier integration
This library is currently not available to public. We will release it on our GitHub soon.
Install django-phenixio package with pip
pip install django-phenixioEnable django-phenixio in your Django project
INSTALLED_APPS = [
...
'django-phenixio',
...
]Run Django migrate commang in your project's root directory
~/app$ python manage.py migratePHENIXIO_USER = "your@email.com"
PHENIXIO_PASSWORD = "secret-password"Make sure your account credentials are not hard-coded in your application. Load them as environment variables to keep them secure.
Now you will see Phenixio app in your Django admin dashboard.
Last updated