Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update some packages and .env fix #558

Merged
merged 1 commit into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ TOKEN="" # Your bot token.

CLIENT_ID="" # Your bot's client ID(If this value is left blank, bots cannot be invited using /invite or /about commands.).

PREFIX= "!" # Your prefix.
PREFIX="!" # Your prefix.

OWNER_IDS=["",""] # Your discord id(You can add multiple ids.).

GUILD_ID= "" # Your server ID(If you want to use the for single server).
GUILD_ID="" # Your server ID(If you want to use the for single server).

PRODUCTION="true" # true for production.

BOT_STATUS= "online" # Your bot status(online, dnd, idle, invisible or offline).
BOT_STATUS="online" # Your bot status(online, dnd, idle, invisible or offline).

BOT_ACTIVITY_TYPE=0 # Activity type is a number from 0 to 5. See more here: https://discord.com/developers/docs/topics/gateway-events#activity-object-activity-types

BOT_ACTIVITY= "Lavamusic" # Your bot activity
BOT_ACTIVITY="Lavamusic" # Your bot activity

DATABASE_URL= "" # Your database url(If you want to use sqlite, then you can leave it blank.).
DATABASE_URL="" # Your database url(If you want to use sqlite, then you can leave it blank.).

AUTO_NODE="false" # true for auto node. It is gave from lavainfo-api(https://lavainfo-api.freedback-dip.workers.dev).

Expand All @@ -26,14 +26,14 @@ LAVALINK_AUTH="youshallnotpass" # Your Lavalink password(If auto node is true, t

LAVALINK_NAME="Lavamusic" # Your Lavalink name(If auto node is true, then you can leave it blank.).

LAVALINK_SECURE= "false" # true for secure Lavalink(If auto node is true, then you can leave it blank.).
LAVALINK_SECURE="false" # true for secure Lavalink(If auto node is true, then you can leave it blank.).

SEARCH_ENGINE= "ytsearch" # ytsearch(YouTube Search), spsearch(Spotify Search), scsearch(SoundCloud Search) or ytmsearch(YouTube Music Search).
SEARCH_ENGINE="ytsearch" # ytsearch(YouTube Search), spsearch(Spotify Search), scsearch(SoundCloud Search) or ytmsearch(YouTube Music Search).

MAX_PLAYLIST_SIZE= "100" # Max playlist size.
MAX_PLAYLIST_SIZE="100" # Max playlist size.

MAX_QUEUE_SIZE= "100" # Max queue size.
MAX_QUEUE_SIZE="100" # Max queue size.

KEEP_ALIVE= "false" # true for keep alive in https://replit.com
KEEP_ALIVE="false" # true for keep alive in https://replit.com

LOG_CHANNEL_ID="" # If you enter this, you will be able to receive the status of Lavalink nodes and guild join/leave logs through the corresponding channel.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
},
"homepage": "https://github.com/appujet/lavamusic#readme",
"devDependencies": {
"@types/node": "^20.12.10",
"@types/node": "^20.12.11",
"@types/signale": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-unicorn": "^53.0.0",
"prettier": "^3.2.5",
"prisma": "^5.13.0",
"ts-node": "^10.9.2",
Expand All @@ -54,7 +54,7 @@
"shoukaku": "^4.0.1",
"signale": "^1.4.0",
"tslib": "^2.6.2",
"undici": "^6.15.0"
"undici": "^6.16.1"
},
"signale": {
"displayScope": true,
Expand Down
Loading