Skip to content

Commit 26919b7

Browse files
committed
feat: thread application requests and related tests
1 parent 34907d8 commit 26919b7

File tree

859 files changed

+9023
-882
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

859 files changed

+9023
-882
lines changed

.env.example

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Unit API Configuration
2+
# Copy this file to .env and fill in your actual values
3+
4+
# Your Unit API access token (for regular applications)
5+
access_token=your_unit_api_token_here
6+
7+
# Your Unit API access token for Thread applications
8+
# This is used specifically for thread-related application requests
9+
thread_access_token=your_thread_api_token_here
10+
11+
# Token Tests Configuration
12+
# User ID for token-related tests (TokenTests)
13+
token_tests_user_id=your_test_user_id_here
14+
15+
# Plaid Integration
16+
# Plaid token for counterparty tests (PaymentTests, CounterpartyTests)
17+
test_plaid_counterparty_token=your_plaid_token_here
18+
19+
# Wallet Account Configuration
20+
# Terms URL for wallet account creation (AccountTests)
21+
wallet_terms=you_wallet_terms_here

.github/workflows/CI.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
token_tests_user_id: ${{ secrets.TOKEN_TESTS_USER_ID }}
3131
test_plaid_counterparty_token: ${{ secrets.TEST_PLAID_COUNTERPARTY_TOKEN }}
3232
wallet_terms: ${{ secrets.WALLET_TERMS }}
33+
thread_access_token: ${{ secrets.THREAD_ACCESS_TOKEN }}
3334

3435
- name: Store reports
3536
if: failure()

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,9 @@ nb-configuration.xml
8282
##############################
8383
## OS X
8484
##############################
85-
.DS_Store
85+
.DS_Store
86+
87+
##############################
88+
## Environment Variables
89+
##############################
90+
.env

0 commit comments

Comments
 (0)