-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
21 changed files
with
3,775 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Dev | ||
node_modules | ||
.env | ||
|
||
# Prod | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: "3.9" | ||
|
||
services: | ||
app: | ||
build: . | ||
env_file: .env |
Oops, something went wrong.