Skip to content

Commit

Permalink
Merge pull request #89 from PayTechUz/enhancement/version
Browse files Browse the repository at this point in the history
small fix
  • Loading branch information
Muhammadali-Akbarov authored Nov 8, 2024
2 parents 5f211ce + cd16b00 commit e1a5c15
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,21 @@ INSTALLED_APPS = [

Add `'payme'` credentials inside to settings.py

One time payment configuration settings.py
One time payment (Однаразовый платеж) configuration settings.py

Example project: https://github.com/PayTechUz/shop-backend
```python
PAYME_ID = "your-payme-id"
PAYME_KEY = "your-payme-key"
PAYME_ACCOUNT_FIELD = "id"
PAYME_ACCOUNT_FIELD = "order_id"
PAYME_AMOUNT_FIELD = "total_amount"
PAYME_ACCOUNT_MODEL = "orders.models.Orders"
PAYME_ONE_TIME_PAYMENT = True
```

Multi payment configuration settings.py
Multi payment (Накопительный) configuration settings.py

Example project: Coming soon
```python
PAYME_ID = "your-payme-id"
PAYME_KEY = "your-payme-key"
Expand Down

0 comments on commit e1a5c15

Please sign in to comment.