Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
Signed-off-by: Avior <[email protected]>
  • Loading branch information
Aviortheking committed Jul 3, 2021
0 parents commit ccf889e
Show file tree
Hide file tree
Showing 21 changed files with 3,775 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.yml]
indent_style = space
indent_size = 2
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Dev
node_modules
.env

# Prod
dist
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:alpine

WORKDIR /app

COPY ["package.json", "package-lock.json*", "./"]

RUN npm install --production --silent

COPY . .

RUN npm run build || true

CMD [ "npm", "run", "prod" ]
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<p align="center">
<a href="https://www.tcgdex.net">
<img src="https://repository-images.githubusercontent.com/241652591/01dd7200-ca01-11eb-98e0-d8f04e7dfe42" width="50%" alt="Discord Link">
</a>
</p>
<p align="center">
<a href="https://discord.gg/NehYTAhsZE">
<img src="https://img.shields.io/discord/857231041261076491?color=%235865F2&label=Discord" alt="Discord Link">
</a>
<a href="https://github.com/tcgdex/discord/issues">
<img src="https://img.shields.io/github/issues/tcgdex/discord?style=flat-square&color=%2344CC11" alt="Issue count">
</a>
<a href="https://github.com/tcgdex/discord/stargazers">
<img src="https://img.shields.io/github/stars/tcgdex/discord?style=flat-square" alt="Github stars">
</a>
</p>

# TCGdex BOT

Browse the Pokemon Trading Card game cards using the TCGdex BOT

## Commands

| Command | Description |
|----------|----------------------------------------|
| find | Find a card by it's name name |
| findbyid | Find a card by it's global/local ID id |
| help | Show the commands registered |
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: "3.9"

services:
app:
build: .
env_file: .env
Loading

0 comments on commit ccf889e

Please sign in to comment.