Skip to content
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

fix: google cloud secret #700

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
fix
  • Loading branch information
RiXelanya committed Feb 20, 2024
commit 19028b053c2d3fa9c034db344fc4bd9374de08ca
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const config = {
REDIS_PORT: process.env.PORT_REDIS ?? '6379',
REDIS_PASSWORD: process.env.REDIS_PASSWORD ?? 'root',
COINMARKETCAP_API_KEY: process.env.API_KEY_COINMARKETCAP ?? '',
COINMARKETCAP_HOST: process.env.COINMARKETCAP_HOST ?? '',
COINMARKETCAP_HOST: process.env.COINMARKETCAP_HOST ?? 'https://pro-api.coinmarketcap.com/v2',
DEBIO_ESCROW_PRIVATE_KEY: process.env.DEBIO_ESCROW_PRIVATE_KEY ?? 'PRIVKEY',
WEB3_RPC_HTTPS: process.env.WEB3_RPC_HTTPS ?? '',
ESCROW_CONTRACT_ADDRESS: process.env.ESCROW_CONTRACT_ADDRESS ?? 'ADDR',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('Debio Conversion Service Unit Tests', () => {

const API_KEY_COINMARKETCAP = config.COINMARKETCAP_API_KEY;
const SODAKI_HOST = 'SODAKI_HOST';
const COINMARKETCAP_HOST = 'COINMARKETCAP_HOST';
const COINMARKETCAP_HOST = config.COINMARKETCAP_HOST;
const REDIS_HOST = 'REDIS_HOST';
const REDIS_PORT = 'REDIS_PORT';
const REDIS_PASSWORD = 'REDIS_PASSWORD';
Expand Down
Loading