mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-01 00:10:07 +00:00
* Add `create-discordeno-bot` reference in README.md * Switch to deno tasks. * Fix `DISCORD_TOKEN` var * Fix `gateway` workers Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
8 lines
239 B
Makefile
8 lines
239 B
Makefile
rest:
|
|
deno run -A --unstable --import-map ./importMap.json ./src/rest/mod.ts
|
|
|
|
gateway:
|
|
deno run -A --unstable --import-map ./importMap.json ./src/gateway/mod.ts
|
|
|
|
bot:
|
|
deno run -A --unstable --import-map ./importMap.json ./src/bot/mod.ts
|