updated readme && pm2 config

This commit is contained in:
Letian Li 2025-04-26 01:23:19 +02:00
parent f5948b248e
commit 98be9dfd11
2 changed files with 10 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# fantastic_spoon_dc # Fantastic Spoon - Discord Special Edition
To install dependencies: To install dependencies:
@ -6,10 +6,11 @@ To install dependencies:
bun install bun install
``` ```
To run: To run in development mode:
```bash ```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. 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)

6
ecosystem.config.cjs Normal file
View File

@ -0,0 +1,6 @@
module.exports = {
apps : [{
name : "fantastic_spoon_dc",
script : "bun dev"
}]
}