mirror of
https://github.com/alexgo-io/bitcoin-indexer.git
synced 2026-01-12 16:52:57 +08:00
* new code * add ci * files * standard * Update api/runes/package.json Co-authored-by: ASuciuX <151519329+ASuciuX@users.noreply.github.com> --------- Co-authored-by: ASuciuX <151519329+ASuciuX@users.noreply.github.com>
12 lines
389 B
TypeScript
12 lines
389 B
TypeScript
// ts-unused-exports:disable-next-line
|
|
export default (): void => {
|
|
process.env.API_HOST = '0.0.0.0';
|
|
process.env.API_PORT = '3000';
|
|
process.env.RUNES_PGHOST = '127.0.0.1';
|
|
process.env.RUNES_PGPORT = '5432';
|
|
process.env.RUNES_PGUSER = 'postgres';
|
|
process.env.RUNES_PGPASSWORD = 'postgres';
|
|
process.env.RUNES_PGDATABASE = 'postgres';
|
|
process.env.RUNES_SCHEMA = 'public';
|
|
};
|