Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
21 changes: 21 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Unit API Configuration
# Copy this file to .env and fill in your actual values

# Your Unit API access token (for regular applications)
access_token=your_unit_api_token_here

# Your Unit API access token for Thread applications
# This is used specifically for thread-related application requests
thread_access_token=your_thread_api_token_here

# Token Tests Configuration
# User ID for token-related tests (TokenTests)
token_tests_user_id=your_test_user_id_here

# Plaid Integration
# Plaid token for counterparty tests (PaymentTests, CounterpartyTests)
test_plaid_counterparty_token=your_plaid_token_here

# Wallet Account Configuration
# Terms URL for wallet account creation (AccountTests)
wallet_terms=you_wallet_terms_here
1 change: 1 addition & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
token_tests_user_id: ${{ secrets.TOKEN_TESTS_USER_ID }}
test_plaid_counterparty_token: ${{ secrets.TEST_PLAID_COUNTERPARTY_TOKEN }}
wallet_terms: ${{ secrets.WALLET_TERMS }}
thread_access_token: ${{ secrets.UNIT_THREAD_TOKEN }}

- name: Store reports
if: failure()
Expand Down
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,9 @@ nb-configuration.xml
##############################
## OS X
##############################
.DS_Store
.DS_Store

##############################
## Environment Variables
##############################
.env
Loading
Loading