🧪 Experimental IPFS HTTP gateway providing access to UnixFS data via CAR CIDs.
- Install the project
npm install
- CloudFlare Authentication
npx wrangler login
- Get Your Account Id
npx wrangler whoami
- Add your configs to
wrangler.toml
[env.YOUR_USERNAME]
# Custom name for your testing/dev worker
name = "YOUR_USERNAME-freeway"
workers_dev = true
# Account Id from step 3
account_id = "YOUR_ACCOUNT_ID"
# See step 4.2 to create the R2 Bucket
r2_buckets = [
{
binding = "CARPARK", bucket_name = "carpark-YOUR_USERNAME-0", preview_bucket_name = "carpark-YOUR_USERNAME-preview-0"
}
]
[env.YOUR_USERNAME.vars]
DEBUG = "true"
FF_RATE_LIMITER_ENABLED = "false"
CONTENT_CLAIMS_SERVICE_URL = "https://dev.claims.web3.storage"
If you want to enable the Rate Limiter and KV add the following too:
[[env.YOUR_USERNAME.unsafe.bindings]]
name = "RATE_LIMITER"
type = "ratelimit"
namespace_id = "0"
simple = { limit = 100, period = 60 }
[[env.YOUR_USERNAME.kv_namespaces]]
binding = "AUTH_TOKEN_METADATA"
# See step 4.1 to create the KV store
id = "KV_ID"
4.1 In order to get the KV ID you need to create a KV with the following command:
npx wrangler kv namespace create YOUR_USERNAME-AUTH_TOKEN_METADATA
Copy the id
from the output and add it to your env.YOUR_USERNAME.kv_namespaces
.
4.2 You will also need to create the R2 Bucket:
npx wrangler r2 bucket create carpark-YOUR_USERNAME-0
- Start local server
npx wrangler dev -e YOUR_USERNAME
Freeway is using miniflare v3 for testing which allows you to define the testing configurations in the JavaScript code (see src/test/index.spec.js
).
Note:
- Miniflare v3 doesn't support the Rate Limiting binding for now, so we need to mock the rate limiting API to be able to use it in tests and in local development.
In order to run the existing tests you can execute the following commands:
Miniflare Tests
npm run test:miniflare
Unit Tests
npm run test:unit
Integration Tests
TBD
Deploy the worker to Cloudflare using your environment configuration:
npx wrangler deploy -e YOUR_USERNAME
In order to remove the worker after your testing is done, you can execute:
npx wrangler delete YOUR_WORKER_NAME -e YOUR_USERNAME
If you are connected with the Cloudflare Company account, please make sure you are not deleting the freeway-worker
- which is the Production worker.
Feel free to join in. All welcome. Please read our contributing guidelines and/or open an issue!
Dual-licensed under MIT + Apache 2.0