Skip to content

Commit

Permalink
Update package and Change the order of NODES settings in .env
Browse files Browse the repository at this point in the history
  • Loading branch information
hwangsihu committed Oct 17, 2024
1 parent e90bdf5 commit 367141a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ DATABASE_URL="" # Your database url (If you want to use sqlite, then you can lea
AUTO_NODE=="false" # true for auto node. It is given from lavainfo-api (https://lavainfo-api.deno.dev).
SEARCH_ENGINE="YouTubeMusic" # Search engine to be used when playing the song. You can use: YouTube, YouTubeMusic, SoundCloud, Spotify, Apple, Deezer, Yandex and JioSaavn
GENIUS_API="" # Sign up and get your own api at (https://genius.com/) to fetch your lyrics (CLIENT TOKEN)
NODES=[{"id":"Local Node","host":"localhost","port":2333,"authorization":"youshallnotpass","retryAmount":5,"retryDelay":60000,"secure":"false"}]
NODES=[{"id":"Local Node","host":"localhost","port":2333,"authorization":"youshallnotpass","secure":"false","retryAmount":5,"retryDelay":60000}]
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@
},
"homepage": "https://github.com/appujet/lavamusic#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@biomejs/biome": "^1.9.3",
"@types/i18n": "^0.13.12",
"@types/node": "^22.7.4",
"@types/node": "^22.7.6",
"@types/signale": "^1.4.7",
"prisma": "^5.20.0",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
"prisma": "^5.21.0",
"tslib": "^2.8.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@prisma/client": "^5.20.0",
"@prisma/client": "^5.21.0",
"@top-gg/sdk": "^3.1.6",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
Expand All @@ -52,7 +52,7 @@
"node-system-stats": "^1.3.0",
"signale": "^1.4.0",
"topgg-autoposter": "^2.0.2",
"undici": "^6.19.8",
"undici": "^6.20.1",
"zod": "^3.23.8"
},
"signale": {
Expand Down

0 comments on commit 367141a

Please sign in to comment.