Django
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
Installation
Install django-phenixio
package with pip
pip install django-phenixio
Enable django-phenixio in your Django project
INSTALLED_APPS = [
...
'django-phenixio',
...
]
Run Django migrate commang in your project's root directory
~/app$ python manage.py migrate
Configuration
PHENIXIO_USER = "[email protected]"
PHENIXIO_PASSWORD = "secret-password"
Admin Panel
Now you will see Phenixio app in your Django admin dashboard.
Last updated
Was this helpful?