We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Copied from: ethersphere#501
config.ts const beeApiUrl = BEE_API_URL || DEFAULT_BEE_API_URL split by comma and pluralise
config.ts
const beeApiUrl = BEE_API_URL || DEFAULT_BEE_API_URL
proxy.ts
interface Options
beeApiUrl
string[]
fetchAndRespond
stamps.ts Rewrite get postageStamp(): string with custom logic to select stamp (or ignore if using custom middleware for stamps)
stamps.ts
get postageStamp(): string
server.ts There is a Bee instance created in server.ts:
server.ts
const bee = new Bee(beeApiUrl)
However, it is used only for readiness checks, exposing Bee identity, and homepage. If you don't need those features, feel free to ignore it.
Simple but ugly fix is using beeApiUrls[0] instead.
beeApiUrls[0]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Copied from: ethersphere#501
config.ts
const beeApiUrl = BEE_API_URL || DEFAULT_BEE_API_URL
split by comma and pluraliseproxy.ts
interface Options
, replacebeeApiUrl
: string withstring[]
beeApiUrl
infetchAndRespond
stamps.ts
Rewrite
get postageStamp(): string
with custom logic to select stamp (or ignore if using custom middleware for stamps)server.ts
There is a Bee instance created in
server.ts
:const bee = new Bee(beeApiUrl)
However, it is used only for readiness checks, exposing Bee identity, and homepage. If you don't need those features, feel free to ignore it.
Simple but ugly fix is using
beeApiUrls[0]
instead.The text was updated successfully, but these errors were encountered: