Skip to content

Commit

Permalink
chore: add wrangler.toml configuration for deployment
Browse files Browse the repository at this point in the history
This commit introduces the Wrangler configuration file `wrangler.toml` for the project "lilnouns-bots". This change is necessary to enable the Cloudflare deployment. It specifies the name, entry point, compatibility date, and build command for the Worker script.
  • Loading branch information
nekofar committed Sep 19, 2023
1 parent 0a34271 commit 3400976
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions wrangler.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name = "lilnouns-bots"
main = "build/worker/shim.mjs"
compatibility_date = "2023-03-22"

[build]
command = "cargo install -q worker-build && worker-build --release"

0 comments on commit 3400976

Please sign in to comment.