mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 07:36:34 +03:00
remove envvar since it cannot be evaluated before configuration validation
This commit is contained in:
@@ -4,12 +4,12 @@ docusign:
|
||||
|
||||
# Authentication credentials to log into docusign.
|
||||
auth_jwt:
|
||||
private_key: "%env(DOCUSIGN_PRIVATE_KEY_PATH)%"
|
||||
integration_key: "%env(DOCUSIGN_INTEGRATION_KEY)%"
|
||||
user_guid: "%env(DOCUSIGN_USER_GUID)%"
|
||||
private_key: "%kernel.project_dir%/%CONFIG_DIR%/jwt/docusign.pem"
|
||||
integration_key: "51b176de-3298-460b-8201-f73e323eee14" # Replace by yours
|
||||
user_guid: "51b176de-3298-460b-8201-f73e323eee14" # Replace by yours
|
||||
|
||||
# Your DocuSign account id
|
||||
account_id: "%env(DOCUSIGN_ACCOUNT_ID)%"
|
||||
account_id: 1234567
|
||||
|
||||
default_signer_name: "Grégoire Hébert" # Name of the person that will be notified and will sign the document if none is sent to the url.
|
||||
default_signer_email: "gregoire@les-tilleuls.coop" # Mail of the person that will be notified and will sign the document if none is sent to the url.
|
||||
|
||||
@@ -6,9 +6,9 @@
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"env": {
|
||||
"DOCUSIGN_PRIVATE_KEY_PATH": "%kernel.project_dir%/%CONFIG_DIR%/jwt/docusign.pem",
|
||||
"DOCUSIGN_INTEGRATION_KEY": "UUID-DOCUSIGN-INTEGRATION-KEY",
|
||||
"DOCUSIGN_USER_GUID": "UUID-DOCUSIGN-USER-GUID",
|
||||
"DOCUSIGN_PRIVATE_KEY_PATH": "",
|
||||
"DOCUSIGN_INTEGRATION_KEY": "",
|
||||
"DOCUSIGN_USER_GUID": "",
|
||||
"DOCUSIGN_ACCOUNT_ID": "1234567"
|
||||
},
|
||||
"gitignore": [
|
||||
|
||||
Reference in New Issue
Block a user