-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
195 changed files
with
2,276 additions
and
1,823 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,20 +1,19 @@ | ||
DISCORD_TOKEN= | ||
MONGO_TOKEN= | ||
GIPHY_TOKEN= | ||
WEBHOOK_ID= | ||
WEBHOOK_TOKEN= | ||
DISCORD_ID= | ||
OWNER_ID= | ||
|
||
|
||
|
||
# Not neccessary variables | ||
DISCORD_STATUS="Listening to meself, I'm a stupid bot" | ||
DISCORD_STATUS="Listening to meself, i love you" | ||
RADIO= | ||
TOPGG_TOKEN= | ||
SPOTIFY_CLIENT_ID= | ||
SPOTIFY_CLIENT_SECRET= | ||
LAVALINK_HOST=lava.link | ||
LAVALINK_PASSWORD=I'm a secret | ||
LAVALINK_PORT=80 | ||
GIPHY_TOKEN= | ||
LAVALINK_SECURE=false | ||
OPENAI= |
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 |
---|---|---|
@@ -1,3 +1,76 @@ | ||
hidden = [".config"] | ||
run = "npm run start" | ||
entryPoint = "src/index.js" | ||
|
||
[[hints]] | ||
regex = "Error \\[ERR_REQUIRE_ESM\\]" | ||
message = "We see that you are using require(...) inside your code. We currently do not support this syntax. Please use 'import' instead when using external modules. (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import)" | ||
|
||
[nix] | ||
channel = "stable-22_05" | ||
|
||
[env] | ||
XDG_CONFIG_HOME = "/home/runner/.config" | ||
PATH = "/home/runner/$REPL_SLUG/.config/npm/node_global/bin:/home/runner/$REPL_SLUG/node_modules/.bin" | ||
npm_config_prefix = "/home/runner/$REPL_SLUG/.config/npm/node_global" | ||
|
||
[gitHubImport] | ||
requiredFiles = [".replit", "replit.nix", ".config"] | ||
|
||
[packager] | ||
language = "nodejs" | ||
|
||
[packager.features] | ||
packageSearch = true | ||
guessImports = true | ||
enabledForHosting = false | ||
|
||
[unitTest] | ||
language = "nodejs" | ||
|
||
[debugger] | ||
support = true | ||
|
||
[debugger.interactive] | ||
transport = "localhost:0" | ||
startCommand = ["dap-node"] | ||
|
||
[debugger.interactive.initializeMessage] | ||
command = "initialize" | ||
type = "request" | ||
|
||
[debugger.interactive.initializeMessage.arguments] | ||
clientID = "replit" | ||
clientName = "replit.com" | ||
columnsStartAt1 = true | ||
linesStartAt1 = true | ||
locale = "en-us" | ||
pathFormat = "path" | ||
supportsInvalidatedEvent = true | ||
supportsProgressReporting = true | ||
supportsRunInTerminalRequest = true | ||
supportsVariablePaging = true | ||
supportsVariableType = true | ||
|
||
[debugger.interactive.launchMessage] | ||
command = "launch" | ||
type = "request" | ||
|
||
[debugger.interactive.launchMessage.arguments] | ||
args = [] | ||
console = "externalTerminal" | ||
cwd = "." | ||
environment = [] | ||
pauseForSourceMap = false | ||
program = "./index.js" | ||
request = "launch" | ||
sourceMaps = true | ||
stopOnEntry = false | ||
type = "pwa-node" | ||
|
||
[languages] | ||
|
||
[languages.javascript] | ||
pattern = "**/{*.js,*.jsx,*.ts,*.tsx}" | ||
|
||
[languages.javascript.languageServer] | ||
start = "typescript-language-server --stdio" |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM node:latest | ||
FROM node:18-buster | ||
WORKDIR /usr/src/app | ||
COPY package*.json ./ | ||
RUN npm install | ||
COPY . . | ||
CMD ["npm", "start"] | ||
CMD ["npm", "start"] |
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.