-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: rename service and add VMMETRICS_API_TOKEN var
- Loading branch information
1 parent
7a2441b
commit 4b55672
Showing
5 changed files
with
13 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
interface WorkerEnv extends Omit<Env, 'ENVIRONMENT' | 'PMTILES_FILE_NAME' | 'PMTILES_FILE_HASH'> { | ||
interface WorkerEnv | ||
extends Omit<Env, 'ENVIRONMENT' | 'PMTILES_FILE_NAME' | 'PMTILES_FILE_HASH' | 'VMMETRICS_API_TOKEN'> { | ||
ENVIRONMENT: string; | ||
PMTILES_FILE_NAME: string; | ||
PMTILES_FILE_HASH: string; | ||
VMMETRICS_API_TOKEN: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
// Generated by Wrangler on Mon Aug 12 2024 10:58:19 GMT+0100 (British Summer Time) | ||
// Generated by Wrangler on Mon Aug 12 2024 19:11:53 GMT+0100 (British Summer Time) | ||
// by running `wrangler types` | ||
|
||
interface Env { | ||
KV: KVNamespace; | ||
PMTILES_FILE_NAME: 'v1.pmtiles'; | ||
PMTILES_FILE_HASH: 'example-dev-hash'; | ||
ENVIRONMENT: 'dev'; | ||
BUCKET: R2Bucket; | ||
CF_VERSION_METADATA: { id: string; tag: string }; | ||
KV: KVNamespace; | ||
PMTILES_FILE_NAME: "v1.pmtiles"; | ||
PMTILES_FILE_HASH: "example-dev-hash"; | ||
ENVIRONMENT: "development"; | ||
VMMETRICS_API_TOKEN: "token"; | ||
BUCKET: R2Bucket; | ||
CF_VERSION_METADATA: { id: string; tag: string }; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters