Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alwayslearningpls/philosopherplbot
https://github.com/alwayslearningpls/philosopherplbot
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/alwayslearningpls/philosopherplbot
- Owner: alwayslearningPLs
- License: apache-2.0
- Created: 2022-09-06T13:40:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-14T03:25:28.000Z (over 2 years ago)
- Last Synced: 2024-11-06T15:50:14.417Z (2 months ago)
- Language: TypeScript
- Size: 57.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
> `1. Instalacion de paquetes`
**Tener en cuenta que se necesita de [NodeJS](https://nodejs.dev/) para ejecutar este proyecto**
```zsh
npm i
```> `2. Configuramos settings.ts`
**Este archivo se situa dentro de /src/, veremos algo igual:**
```ts
import { Settings } from "./types/ConfigurationType";export const Token: string =
"AQUI EL TOKEN DEL BOT";
export const configuration: Settings = {
serverID: "SERVER ID",
testing: true || false,
mongoData: {
uri: "MONGO URI DE TU MONGODB",
},
devs: [
"992146567555448934" /** exற */,
"IDs de los developers (ID de Discord)"
],
};// Categorias (POR DEFECTO) no necesario tocar
export const categorys = ["Utils"];// Colores (POR DEFECTO) no necesario tocar
export enum Colors {
Error = "#eb4034",
Success = "#6ad966",
Warn = "#e69627",
Default = "#7289da",
Invisible = "#2c2f33",
}
```
**Remplazaremos cualquier valor que veamos que deberia ser configurado, y una vez hecho eso ahora vamos a ejecutar el bot...**```zsh
npm run dev
```