Skip to content

Commit

Permalink
feat: added paddle billing support
Browse files Browse the repository at this point in the history
  • Loading branch information
adnan-kamili committed Feb 15, 2024
1 parent 2667d53 commit 47157a4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cryptlex/cryptlex-enterprise/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ home: https://cryptlex.com
icon: https://cryptlex.com/images/cryptlex_icon.png
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: "3.16.30"
version: "3.16.31"
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: "3.16.30"
appVersion: "3.16.31"
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ data:
{{ if .Values.webApi.paddle.apiUrl }}
PADDLE_APIURL: {{ .Values.webApi.paddle.apiUrl | quote }}
{{ end }}
{{ if .Values.webApi.paddle.apiUrlLegacy }}
PADDLE_APIURLLEGACY: {{ .Values.webApi.paddle.apiUrlLegacy | quote }}
{{ end }}
{{ end }}
# Mail settings
EMAIL_FROMADDRESS: {{ .Values.webApi.email.fromAddress }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,8 @@ stringData:
{{ if .Values.webApi.paddle.vendorAuthCode }}
PADDLE_VENDORAUTHCODE: {{ .Values.webApi.paddle.vendorAuthCode | quote }}
{{ end }}
{{ if .Values.webApi.paddle.apiKey }}
PADDLE_APIKEY: {{ .Values.webApi.paddle.apiKey | quote }}
{{ end }}
{{ end }}
NEW_RELIC_LICENSE_KEY: {{ .Values.webApi.newRelic.licenseKey | quote }}

0 comments on commit 47157a4

Please sign in to comment.