This project utilizes pnpm. No other package manager is supported for this project.
To install dependencies for this project, open a command line interface at the directory of the cloned repository, and run:
pnpm install
This will create a node_modules
directory in that of your project and link the packages there.
Testing the application using a database on your own machine will require a localhost database setup:
- Create a
.env
in the root directory of the repository. - Inside of the
.env
file, include the following:
# Discord
DISCORD_TOKEN="<discord_application_token>"
DISCORD_ID="<discord_application_id>"
GUILD_ID="<guild_id>"
# Database
MONGODB_URI="<uri>"
# Development mode?
NODE_ENV="production"
Replace fields accordingly.
pnpm run dev
Note: You will need MongoDB and Node.js installed to be able to run the program.