mirror of
https://github.com/alexgo-io/bitcoin-indexer.git
synced 2026-04-30 20:51:51 +08:00
* feat: add database migration cli commands * update cargo lock * chore: import first api files * test: cache first * test: cache * test: sats * test: inscription show * test: inscription transfers * test: inscriptions index * test: inscriptions complete * test: counts * test: status * test: block counts * test: brc20 activity * test: brc20 holders * ci: api tests * ci: update nvmrc path * ci: remove migration refs * ci: unused exports * ci: unused * ci: build publish * ci: monorepo * fix: timestamps * Update api/ordinals/docs/feature-guides/rate-limiting.md Co-authored-by: ASuciuX <151519329+ASuciuX@users.noreply.github.com> * Update api/ordinals/docs/feature-guides/rate-limiting.md Co-authored-by: ASuciuX <151519329+ASuciuX@users.noreply.github.com> * Update api/ordinals/docs/overview.md Co-authored-by: ASuciuX <151519329+ASuciuX@users.noreply.github.com> * Update api/ordinals/src/api/schemas.ts Co-authored-by: ASuciuX <151519329+ASuciuX@users.noreply.github.com> * Update api/ordinals/src/api/schemas.ts Co-authored-by: ASuciuX <151519329+ASuciuX@users.noreply.github.com> * fix: warnings --------- Co-authored-by: ASuciuX <151519329+ASuciuX@users.noreply.github.com>
18 lines
656 B
TypeScript
18 lines
656 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.ORDINALS_PGHOST = '127.0.0.1';
|
|
process.env.ORDINALS_PGPORT = '5432';
|
|
process.env.ORDINALS_PGUSER = 'postgres';
|
|
process.env.ORDINALS_PGPASSWORD = 'postgres';
|
|
process.env.ORDINALS_PGDATABASE = 'postgres';
|
|
process.env.ORDINALS_SCHEMA = 'public';
|
|
process.env.BRC20_PGHOST = '127.0.0.1';
|
|
process.env.BRC20_PGPORT = '5432';
|
|
process.env.BRC20_PGUSER = 'postgres';
|
|
process.env.BRC20_PGPASSWORD = 'postgres';
|
|
process.env.BRC20_PGDATABASE = 'postgres';
|
|
process.env.BRC20_SCHEMA = 'public';
|
|
};
|