Skip to content

Commit

Permalink
🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
TecEash1 committed Mar 1, 2024
0 parents commit 2dceb6d
Show file tree
Hide file tree
Showing 30 changed files with 2,922 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/bugs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: 🐛 Bug
description: File a bug/issue
title: "[BUG] <title>"
labels: [ "bug" ]
body:
- type: checkboxes
attributes:
label: 🚀 Are you trying to Self Host the bot?
description: Please state if you are encountering the bug when using the official bot or when running a cloned/self Hosted version of it.
options:
- label: I am using the official bot
required: false
- type: textarea
attributes:
label: 🤔 Current Behavior
description: A concise description of what you're experiencing.
placeholder: |
The bot is...
validations:
required: true
- type: textarea
attributes:
label: ✅ Expected Behavior
description: A concise description of what you expected to happen.
placeholder: |
I expected...
validations:
required: false
- type: textarea
attributes:
label: 📝 Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. Run this command...
2. Open up this...
3. Recieve '...'
4. See error...
validations:
required: true
- type: textarea
attributes:
label: ℹ️ Anything else?
description: |
Links? References? Anything that will give us more context about the issue you are encountering!
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 🚀 Enhancement
description: Suggest improvements to pre-exisitng features
title: "[ENHANCEMENT] <title>"
labels: [ "enhancement" ]
body:
- type: textarea
attributes:
label: 📋 What is the current feature?
description: A clear statement of the current feature
placeholder: |
The [command_name] command
validations:
required: true
- type: textarea
attributes:
label: 🌟 How do you want it to be improved?
description: |
A concise description of how you want the feature you mentioned to be improved
Tip: If you have already implemented it and have a Pull Request please include the link
placeholder: |
I would like this command to have...
validations:
required: true
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ✨ Feature
description: Suggest any additional features
title: "[FEATURE] <title>"
labels: [ "feature" ]
body:
- type: dropdown
id: category
attributes:
label: 📂 What category is this feature in?
multiple: false
options:
- Information
- AI
- Other
validations:
required: true
- type: textarea
attributes:
label: 📝 Description of Feature
description: |
A concise description of what feature you want to be implemented.
Tip: If you have already implemented it and have a Pull Request please include the link
placeholder: |
The feature I want to be implemented is...
validations:
required: true
111 changes: 111 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
# Custom
/config.json
.vscode/
.idea/
.node-version

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
package-lock.json
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"useTabs": true
}
Loading

0 comments on commit 2dceb6d

Please sign in to comment.