mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 02:46:28 +00:00
Add new payment methods and rename posgres_db envvar
This commit is contained in:
parent
5281176e3c
commit
588691c4c8
@ -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
@ -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
BIN
frontend/src/components/payment-methods/gpay.png
Normal file
BIN
frontend/src/components/payment-methods/gpay.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 54 KiB |
BIN
frontend/src/components/payment-methods/ozon.png
Normal file
BIN
frontend/src/components/payment-methods/ozon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
BIN
frontend/src/components/payment-methods/payid.png
Normal file
BIN
frontend/src/components/payment-methods/payid.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
BIN
frontend/src/components/payment-methods/paysafe.png
Normal file
BIN
frontend/src/components/payment-methods/paysafe.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 175 KiB |
BIN
frontend/src/components/payment-methods/phonepe.png
Normal file
BIN
frontend/src/components/payment-methods/phonepe.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
frontend/src/components/payment-methods/sberbank.png
Normal file
BIN
frontend/src/components/payment-methods/sberbank.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
@ -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"),
|
||||
|
Loading…
Reference in New Issue
Block a user