forked from harshendram/Advanced-Discord-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
32 lines (26 loc) · 688 Bytes
/
setup.bat
File metadata and controls
32 lines (26 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@echo off
echo 🚀 VAISH Bot Setup Script
echo =====================
echo.
echo 📦 Installing dependencies...
npm install
echo.
echo ✅ Dependencies installed successfully!
echo.
echo 📋 Setting up environment file...
if not exist .env (
copy .env.example .env
echo ✅ Created .env file from template
echo ⚠️ Please edit .env file with your bot credentials before continuing
) else (
echo ⚠️ .env file already exists
)
echo.
echo 🎯 Next steps:
echo 1. Edit .env file with your Discord bot token and client ID
echo 2. Run: node deploy-commands.js
echo 3. Run: npm start
echo.
echo 📚 For detailed setup instructions, check README.md
echo.
pause