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

DEVLIB-1233: Rename Compute@Edge to Compute #8

Merged
merged 3 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,6 @@ dist
# TernJS port file
.tern-port

# Compute@Edge build artifacts
# Compute build artifacts
pkg
bin
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Deploy to Fastly](https://deploy.edgecompute.app/button)](https://deploy.edgecompute.app/deploy)

An application template for validating requests against an OpenAPI 3.x definition, in JavaScript, for Fastly's Compute@Edge environment.
An application template for validating requests against an OpenAPI 3.x definition, in JavaScript, for Fastly Compute.

### OpenAPI, briefly

Expand All @@ -22,7 +22,7 @@ This starter kit makes it possible to define custom request handling logic at th

Replace the contents of `src/definition.json` with your own OpenAPI 3.x definition, and change any references to `httpbin.org` to your origin in `fastly.toml` – by replacing the `url` in `local_server.backends.origin`, and the `address` (hostname) in `setup.backends.origin`.

Then run `fastly compute serve` to try out this Compute@Edge app on your local machine, or `fastly compute publish` to publish a new Compute@Edge service.
Then run `fastly compute serve` to try out this Compute app on your local machine, or `fastly compute publish` to publish a new Compute service.

### Request handling

Expand All @@ -32,7 +32,7 @@ OpenAPI validation errors are logged in both cases.

To forward all requests to the origin, set the constant `REJECT_INVALID_REQUESTS` to `false`.

**For more details about other starter kits for Compute@Edge, see the [Fastly Developer Hub](https://developer.fastly.com/solutions/starters)**
**For more details about other starter kits for Compute, see the [Fastly Developer Hub](https://developer.fastly.com/solutions/starters)**

## Security issues

Expand Down
2 changes: 1 addition & 1 deletion fastly.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file describes a Fastly Compute@Edge package. To learn more visit:
# This file describes a Fastly Compute package. To learn more visit:
# https://developer.fastly.com/reference/fastly-toml/

authors = ["<oss@fastly.com>"]
Expand Down
Loading
Loading