-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.bat
More file actions
32 lines (31 loc) · 969 Bytes
/
install.bat
File metadata and controls
32 lines (31 loc) · 969 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
title SimpleTickets Installer
echo / ---------------------------------------------- /
echo SimpleTickets Created by Foaf#0001
echo Established
echo 7 / 22 / 2021
echo Please Await Installer
echo / ---------------------------------------------- /
echo Installer Attached...
echo Downloading Required Node Modules...
echo Installing Required Node Modules...
cd %~dp0
cmd /c "npm i"
echo Checking Files...
echo Finilizing Project...
echo Finished!
echo --------------------------------------
echo Creating start command for Your Bot...
echo --------------------------------------
echo @echo off > start.bat
echo title SimpleTickets >> start.bat
echo :START >> start.bat
echo node server.js >> start.bat
echo goto START >> start.bat
echo "start.bat" File Created.
echo ------------------------------------
echo Deleting Unwanted Files...
echo ------------------------------------
del "%~f0"
echo Closing...
exit