Add new payment methods and rename posgres_db envvar

This commit is contained in:
Reckless_Satoshi 2022-08-09 02:44:29 -07:00
parent 5281176e3c
commit 588691c4c8
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
12 changed files with 84 additions and 6 deletions

View File

@ -14,14 +14,14 @@ BITCOIND_RPCUSER = 'robodev'
BITCOIND_RPCPASSWORD = 'robodev'
# Postgresql Database
POSTGRES_NAME='postgres'
POSTGRES_DB='postgres'
POSTGRES_USER='postgres'
POSTGRES_PASSWORD='example'
POSTGRES_HOST='127.0.0.1'
POSTGRES_PORT='5432'
# Tor proxy for remote calls (e.g. fetching prices or sending Telegram messages)
USE_TOR=True
USE_TOR='True'
TOR_PROXY='127.0.0.1:9050'
# Auto unlock LND password. Only used in development docker-compose environment.

File diff suppressed because one or more lines are too long

View File

@ -23,11 +23,17 @@ export const paymentMethods = [
{name: "Verse",icon:'verse'},
{name: "Paysera",icon:'paysera'},
{name: "Amazon GiftCard",icon:'amazon'},
{name: "Ozon GiftCard",icon:'ozon'},
{name: "AliPay", icon: 'alipay'},
{name: "GPay", icon: 'gpay'},
{name: "Bancolombia",icon:'bancolombia'},
{name: "Pago Movil BDV",icon:'pagomovilbdv'},
{name: "SPEI",icon:'spei'},
{name: "PIX",icon:'pix'},
{name: "PayID",icon:'payid'},
{name: "Paysafe",icon:'paysafe'},
{name: "Sberbank",icon:'sberbank'},
{name: "PhonePe",icon:'phonepe'},
{name: "OVO",icon:'ovo'},
{name: "HalCash",icon:'halcash'},
{name: "Vivid",icon:'vivid'},

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -129,7 +129,7 @@ WSGI_APPLICATION = "robosats.wsgi.application"
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": config("POSTGRES_NAME"),
"NAME": config("POSTGRES_DB"),
"USER": config("POSTGRES_USER"),
"PASSWORD": config("POSTGRES_PASSWORD"),
'HOST': config("POSTGRES_HOST"),