Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
JSE-ORG
/
trust-link-backend
Public
Notifications
You must be signed in to change notification settings
Fork
117
Star
0
Code
Issues
7
Pull requests
16
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
77d8bf07980c3ea8f5818f0434888a5ae60e3acd
Breadcrumbs
trust-link-backend
/
.env.test
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
34 lines (27 loc) · 1.44 KB
77d8bf0
Breadcrumbs
trust-link-backend
/
.env.test
Copy path
Top
File metadata and controls
Code
Blame
34 lines (27 loc) · 1.44 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Test environment — loaded by test/setup-env.ts before any spec runs.
NODE_ENV=test
# Database — ephemeral in-memory/local for CI
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/trustlink_test"
# Auth
SEP10_JWT_SECRET="test-jwt-secret-32-characters-long!!"
ADMIN_ADDRESS="GBBD47IF6LWK7P7MDEVSCWR7DPUWV3NY3DTQEVFL4NAT4AQH3ZLLFLA5"
AUTO_RELEASE_SOURCE_ADDRESS="GAGRQY3NU3KFQMBABDJBSJKMT6LSTC2RXAYSAMSYB3Y6XUZRHI3ZGR7T"
# Stellar — testnet, no real calls
STELLAR_NETWORK=TESTNET
STELLAR_HORIZON_URL="https://horizon-testnet.stellar.org"
# Server
PORT=3001
# make sure .env.test has this set to any valid 64-hex-char string, e.g.:
CONTACT_ENCRYPTION_KEY=0000000000000000000000000000000000000000000000000000000000000000
CREDENTIAL_ENCRYPTION_KEY=0000000000000000000000000000000000000000000000000000000000000000
# Without it encryptContact will throw at startup and every test will fail.
SYSTEM_SIGNER_SECRET=SAIJDXETR5B7YFPH7SUOISWVBHHSI46JLYFDCWDMEV2L46XAHASPP35C
CONTRACT_ID=test-contract-id
# Evidence-upload throttler. Small values keep the rate-limit tests fast.
# Set here rather than in the spec: ConfigModule and the route decorator both
# read process.env at import time, before any statement in a spec body runs.
EVIDENCE_UPLOAD_LIMIT=5
EVIDENCE_UPLOAD_TTL=2000
# Background Soroban poller. Disabled in tests so specs that boot AppModule
# do not issue real RPC requests or hold the process open after the run.
SOROBAN_POLLER_ENABLED=false
You can’t perform that action at this time.