
All checks were successful
build-and-push-ext / build_push (push) Successful in 35s
- Dockerfile optimisé: seulement docker-cli pour bitcoin-cli - README.md complet avec tous les endpoints et configuration - CHANGELOG.md mis à jour avec v1.1.1 - Tests unitaires pour les routes funds - Tests d'intégration pour le signer - Configuration Jest avec coverage - Scripts de test dans package.json - Fichier .env.test pour les tests
18 lines
427 B
Plaintext
18 lines
427 B
Plaintext
# Configuration de test
|
|
NODE_ENV=test
|
|
PORT=8081
|
|
LOG_LEVEL=error
|
|
|
|
# Configuration signer pour les tests
|
|
SIGNER_WS_URL=ws://localhost:9090
|
|
SIGNER_BASE_URL=http://localhost:9090
|
|
SIGNER_API_KEY=test-api-key
|
|
|
|
# Configuration CORS pour les tests
|
|
CORS_ALLOWED_ORIGINS=http://localhost:3000,http://localhost:8081
|
|
|
|
# Configuration des services externes (mocks)
|
|
IDNOT_API_KEY=test-key
|
|
OVH_APP_KEY=test-key
|
|
STRIPE_SECRET_KEY=sk_test_mock
|