Skip to content

Self service prod release #702

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Feb 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ dist
.ebextensions
.elasticbeanstalk
coverage
docs
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,3 +367,4 @@ It's been signed with the secret 'secret'. This secret should match your entry i
- [Permissions Guide](https://github.com/topcoder-platform/tc-project-service/blob/develop/docs/guides/permissions-guide/permissions-guide.md) - what kind of permissions we have, how they work and how to use them.
- [Permissions](https://htmlpreview.github.io/?https://github.com/topcoder-platform/tc-project-service/blob/develop/docs/permissions.html) - the list of all permissions in Project Service.
- [Swagger API Definition](http://editor.swagger.io/?url=https://raw.githubusercontent.com/topcoder-platform/tc-project-service/develop/docs/swagger.yaml) - click to open it via Online Swagger Editor.
- [Customer Payments](./docs/guides/customer-payments/README.md) - Customer Payments API details.
7 changes: 5 additions & 2 deletions config/custom-environment-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"timelineDocType": "TIMELINES_ES_DOC_TYPE",
"metadataIndexName": "METADATA_ES_INDEX_NAME",
"metadataDocType": "METADATA_ES_DOC_TYPE",
"metadataDocDefaultId": "METADATA_ES_DOC_DEFAULT_ID"
"metadataDocDefaultId": "METADATA_ES_DOC_DEFAULT_ID",
"customerPaymentIndexName": "CUSTOMER_PAYMENTS_ES_INDEX_NAME",
"customerPaymentDocType": "CUSTOMER_PAYMENT_ES_DOC_TYPE"
},
"pubsubQueueName": "PUBSUB_QUEUE_NAME",
"pubsubExchangeName": "PUBSUB_EXCHANGE_NAME",
Expand Down Expand Up @@ -76,5 +78,6 @@
"CLIENT_KEY": "SALESFORCE_CLIENT_KEY",
"SUBJECT": "SALESFORCE_SUBJECT",
"CLIENT_ID": "SALESFORCE_CLIENT_ID"
}
},
"STRIPE_SECRET_KEY": "STRIPE_SECRET_KEY"
}
5 changes: 4 additions & 1 deletion config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
"timelineDocType": "doc",
"metadataIndexName": "metadata",
"metadataDocType": "doc",
"metadataDocDefaultId": 1
"metadataDocDefaultId": 1,
"customerPaymentIndexName": "customer_payments",
"customerPaymentDocType": "doc"
},
"connectProjectUrl": "",
"dbConfig": {
Expand Down Expand Up @@ -83,5 +85,6 @@
"SUBJECT": "",
"CLIENT_ID": ""
},
"STRIPE_SECRET_KEY": "",
"sfdcBillingAccountNameField": "Billing_Account_Name__c"
}
4 changes: 3 additions & 1 deletion config/test.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"timelineIndexName": "timelines_test",
"timelineDocType": "doc",
"metadataIndexName": "metadata_test",
"metadataDocType": "doc"
"metadataDocType": "doc",
"customerPaymentIndexName": "customer_payments_test",
"customerPaymentDocType": "doc"
},
"connectProjectsUrl": "https://local.topcoder-dev.com/projects/",
"dbConfig": {
Expand Down
Loading