Billing : Documentation #13

Closed
opened 2022-03-15 04:50:59 +00:00 by realaravinth · 4 comments
realaravinth commented 2022-03-15 04:50:59 +00:00 (Migrated from git.batsense.net)
There is no content yet.
realaravinth was assigned by dachary 2022-05-16 13:47:32 +00:00

Please see here for docs. Please let me know if it could be better.

This issue can be closed if the installation documentation is satisfactory.

--
cc: @dachary

Please see [here for docs](https://gitea.hostea.org/Hostea/dashboard/src/branch/master/docs/INSTALL.md#payments). Please let me know if it could be better. This issue can be closed if the installation documentation is satisfactory. -- cc: @dachary
 # the URL at which Dashbaord will be listening
PAYMENT_HOST = "http://localhost:8000"

I'm not sure to understand what this means. The dashboard is listening on a port for web interactions. What is this for?

``` # the URL at which Dashbaord will be listening PAYMENT_HOST = "http://localhost:8000" ``` I'm not sure to understand what this means. The dashboard is listening on a port for web interactions. What is this for?

The URL at which the dashboard can be accessed. If dashbaord is available at, say, https://dash.hostea.org, then PAYMENY_HOST=https://dash.hostea.org.

django-payments expects PAYMENT_HOST variable, perhaps I should use a less-confusing variable name and set its value to PAYMENT_HOST:

SERVER_URL="" # The URL at which the dashboard can be accessed
PAYMENT_HOST = SERVER_URL
The URL at which the dashboard can be accessed. If dashbaord is available at, say, https://dash.hostea.org, then `PAYMENY_HOST=https://dash.hostea.org`. `django-payments` expects `PAYMENT_HOST` variable, perhaps I should use a less-confusing variable name and set its value to `PAYMENT_HOST`: ```python SERVER_URL="" # The URL at which the dashboard can be accessed PAYMENT_HOST = SERVER_URL ```

PAYMENT_HOST will do fine, you guessed right about what confused me :-)

Approved.

PAYMENT_HOST will do fine, you guessed right about what confused me :-) Approved.
Sign in to join this conversation.
There is no content yet.