Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tyowk committed Dec 29, 2024
0 parents commit c816f8d
Show file tree
Hide file tree
Showing 93 changed files with 5,143 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
TOKEN="your_discord_bot_token"
CLIENT_ID="your_discord_bot_id"
DATABASE="your_mysql_database_uri"
TOPGG_TOKEN="topgg_api_token"
TOPGG_AUTH="topgg_webhook_auth"
GENIUS_API="genius_api_key"
DEBUG="true/false"
PORT="your_server_port"
PREFIX="your_bot_prefix"
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/bugs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Bug Report
description: Report us the issue.
title: 'Bug: '
labels: 'bug'
body:
- type: textarea
id: code
attributes:
label: BUGS
render: markdown
placeholder: There is a bugs at...
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output.
render: shell
validations:
required: false
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: NouJS Discord Server
url: https://discord.com/invite/hyQYXcVnmZ
about: Join to support server to get help more faster!
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/features.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Feature Request
description: Request a feature or suggest us!
labels: 'enhancement'
body:
- type: textarea
id: paragraph
attributes:
label: What features would you like to add?
description: Please describe what you're requesting for.
placeholder: So i want...
validations:
required: true
13 changes: 13 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Description

> Please include a summary of the changes and also include relevant motivation and context. List any dependencies that are required for this change.
## Issues

> Fixes # (issue)
## Type of change

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
.npm
logs
.gitconfig
.env
.npmrc
src/config/nodes.js
9 changes: 9 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"singleQuote": true,
"printWidth": 120,
"trailingComma": "all",
"endOfLine": "lf",
"tabWidth": 4,
"semi": true,
"arrowParens": "avoid"
}
Loading

0 comments on commit c816f8d

Please sign in to comment.