From 98be9dfd11ad862f70e044c4028919865147bf59 Mon Sep 17 00:00:00 2001 From: itzdrli Date: Sat, 26 Apr 2025 01:23:19 +0200 Subject: [PATCH] updated readme && pm2 config --- README.md | 7 ++++--- ecosystem.config.cjs | 6 ++++++ 2 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 ecosystem.config.cjs diff --git a/README.md b/README.md index ec3534a..75f21cb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# fantastic_spoon_dc +# Fantastic Spoon - Discord Special Edition To install dependencies: @@ -6,10 +6,11 @@ To install dependencies: bun install ``` -To run: +To run in development mode: ```bash -bun run index.ts +bun dev ``` This project was created using `bun init` in bun v1.2.10. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime. +Powered by [itzdrli](https://git.itzdrli.cc/itzdrli) diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs new file mode 100644 index 0000000..5c8b415 --- /dev/null +++ b/ecosystem.config.cjs @@ -0,0 +1,6 @@ +module.exports = { + apps : [{ + name : "fantastic_spoon_dc", + script : "bun dev" + }] +}