-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
414 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,23 @@ | ||
# Changelog | ||
|
||
Cambios notables de Django Payments Flow | ||
Cambios notables de Django Payments Chile | ||
|
||
Formato basado en [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
y este proyecto se adhiere a [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [2024.9.23] - 2024-09-23 | ||
- Klap | ||
- Kushki | ||
- Pagofacil | ||
- Transbank WebPayPlus | ||
- Transbank OnePay | ||
|
||
### Cambiado | ||
## [2024.9.29] | ||
|
||
- Cambios en documentacion. | ||
- Cambios en Documentacion | ||
- Nuevos providers para: **Flow, Khipu, Payku** | ||
|
||
## [0.1.4] - 2023-07-20 | ||
## [2024.9.23] | ||
|
||
### Agregado | ||
|
||
- Creacion de reembolso | ||
|
||
### Cambiado | ||
|
||
- Rollback de soporte openapi3 | ||
|
||
## [0.1.3] - 2023-07-20 | ||
|
||
### Agregado | ||
|
||
- Creacion de pago | ||
- Correccion Tests | ||
|
||
## [0.1.2] - 2023-07-12 | ||
|
||
### Agregado | ||
|
||
- Algunos tests | ||
- Trabajo con pyFlowCL | ||
|
||
## [0.1.1] - 2023-07-05 | ||
|
||
### Agregado | ||
|
||
- Estructura base | ||
- Commit Inicial |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Ejemplo para `django-payments-chile` | ||
|
||
Este repositorio contiene un ejemplo de cómo utilizar `django-payments-chile`, una extensión de `django-payments` que permite la integración de varios proveedores de pago en Chile. | ||
|
||
## Requisitos | ||
|
||
- Python 3.10 o superior | ||
- Poetry (para gestionar dependencias) | ||
|
||
## Instalación | ||
|
||
Sigue los pasos a continuación para poner en marcha el proyecto de ejemplo: | ||
|
||
1. Instala las dependencias utilizando `poetry`: | ||
|
||
```bash | ||
poetry install -E todo | ||
``` | ||
|
||
2. Aplica las migraciones para preparar la base de datos: | ||
|
||
```bash | ||
poetry run python manage.py makemigrations | ||
poetry run python manage.py migrate | ||
``` | ||
|
||
3. Inicia el servidor de desarrollo: | ||
|
||
```bash | ||
poetry run python manage.py runserver | ||
``` | ||
|
||
## Configuración adicional | ||
|
||
Este proyecto ya incluye configuraciones predeterminadas para un entorno local. Asegúrate de modificar cualquier valor en el archivo `settings.py` si es necesario, como el dominio en `PAYMENT_HOST`, y las credenciales de los proveedores de pago en `PAYMENT_VARIANTS`. |
Oops, something went wrong.