forked from dfinity/canister-profiling
-
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.
Add Azle implementation of Pub/Sub example
- Loading branch information
Showing
12 changed files
with
1,065 additions
and
3 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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"canisters": { | ||
"pub": { | ||
"type": "custom", | ||
"main": "src/pub.ts", | ||
"candid": "src/pub.did", | ||
"build": "npx azle pub", | ||
"wasm": ".azle/pub/pub.wasm", | ||
"gzip": false | ||
}, | ||
"sub": { | ||
"type": "custom", | ||
"main": "src/sub.ts", | ||
"candid": "src/sub.did", | ||
"build": "npx azle sub", | ||
"wasm": ".azle/sub/sub.wasm", | ||
"gzip": false | ||
} | ||
} | ||
} |
Oops, something went wrong.