// FOR OPEN SOURCE PROJECTS
$1,000 in Infrastructure Credits for Maintainers
Harper was built by people who ship open source. If you maintain a project the rest of us depend on, we want to help you run the infrastructure around it.








# config.yaml
plugin: "@harperfast/nextjs"
root: "./docs"
cache: edge
$ harper deploy . target="docs.your-lib.dev"// resources.js
export class Triage extends Webhook {
async post(payload) {
const v = await embed(payload.issue.body);
const [hit] = tables.Maintainer.search({ sort: { target: v } });
return github.assign(payload.issue, hit.user);
}
}# .github/workflows/preview.yml
- run: harper deploy . \
project=pr-${{ github.event.number }} \
target="pr-${{ github.event.number }}.your.fast" \
ttl=7d// schema.graphql
type Telemetry @table @export {
id: ID @primaryKey
version: String @indexed
os: String @indexed
event: String
}// release-notes.js
onPublish(async (pkg) => {
const notes = await cortex.summarize(pkg.changelog);
await discord.post("#releases", notes);
});// status.js
monitor("https://api.your-lib.dev/health", { every: "30s" });
stream("/incidents/").subscribe(broadcast);