You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `ENVIRONMENT` variable should be set to `development` for local development.
The `ENVIRONMENT` doesnt support any other value than `development` for now. Because of the current state of the project, it is not recommended to use the `production` value.
This project uses PostgreSQL as the database. Other databases are not supported at the moment.
Building the Project
tsc -p tsconfig.json
The project uses TypeScript. You need to compile every time the TypeScript files to JavaScript before running the project.
You need to download the TypeScript compiler if you haven't already. You can do this by running `npm i -g typescript`.
Running the Project
node dist/index.js
Using PM2 (for production)
pm2 start dist/index.js --name wumpus-client
You need to download the PM2 process manager for this command if you haven't already . You can do this by running `npm i -g pm2`.
Now you are ready to start building your Discord bot with Wumpus.js! 🚀