Skip to content
New issue

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

Update runtime name in workerd.capnp comments #5

Merged
merged 1 commit into from Sep 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/workerd/server/workerd.capnp
Expand Up @@ -3,20 +3,20 @@
# https://opensource.org/licenses/Apache-2.0

@0xe6afd26682091c01;
# This file defines the schema for configuring the open-source Cloudflare Workers Runtime.
# This file defines the schema for configuring the workerd runtime.
#
# A config file can be written as a `.capnp` file that imports this file and then defines a
# constant of type `Config`. Alternatively, various higher-level tooling (e.g. wrangler) may
# generate configs for you, outputting a binary Cap'n Proto file.
#
# To start a server with a config, do:
#
# cfwrk serve my-config.capnp constantName
# workerd serve my-config.capnp constantName
#
# You can also build a new self-contained binary which combines the `cfwrk` binary with your
# You can also build a new self-contained binary which combines the `workerd` binary with your
# configuration and all your source code:
#
# cfwrk bundle my-config.capnp constantName -o my-server-bin
# workerd compile my-config.capnp constantName -o my-server-bin
#
# This binary can then be run stand-alone.
#
Expand Down