-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create .apibuild .apicra .apiexec .apitee
- Loading branch information
1 parent
e011989
commit db00ca4
Showing
31 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,4 @@ | ||
#!/bin/bash | ||
set URL=http://localhost:3001 | ||
::set BROWSER=chrome | ||
set BROWSER=firefox | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/bash | ||
curl https://php.apifunc.com/apifunc.php --output apifunc.php |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
echo "I will install Node environment" | ||
apt-get autoremove -y | ||
apt-get update -y | ||
apt-get install nodejs npm -y | ||
#curl -sL https://deb.nodesource.com/setup_12.x | sudo bash - | ||
#apt install nodejs |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@echo off | ||
:: silent install nodejs on windows console | ||
:: https://www.ibm.com/support/knowledgecenter/SSZUMP_7.2.1/install_grid_sym/install_silent.html | ||
echo I will install NODE, NPM on Windows system, if is existing i will stop this script | ||
|
||
WHERE node | ||
IF %ERRORLEVEL% EQU 0 ( | ||
echo NODE JS is installed, the installation is stopped! | ||
exit | ||
) | ||
|
||
NET SESSION >nul 2>&1 | ||
IF %ERRORLEVEL% NEQ 0 ( | ||
echo This setup needs admin permissions. Please run this file as admin. | ||
pause | ||
exit | ||
) | ||
|
||
setlocal | ||
|
||
set NODEJS_VERSION=v12.16.3 | ||
set NODEJS_FILENAME=node-%NODEJS_VERSION%-x64.msi | ||
set NODEJS_URL=https://nodejs.org/dist/%NODEJS_VERSION%/%NODEJS_FILENAME% | ||
::set NODEJS_DOWNLOAD_LOCATION=.\ | ||
set NODEJS_LOG=node-log.txt | ||
set INSTALLDIR=C:\nodejs\ | ||
|
||
@echo on | ||
|
||
msiexec.exe /i %NODEJS_FILENAME% INSTALLDIR=%INSTALLDIR% /qn /L*v %NODEJS_LOG% | ||
|
||
echo program: %NODEJS_FILENAME% is installed! | ||
|
||
endlocal | ||
dir |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
echo "status of node:" | ||
nodejs -v | ||
#nodejs --version | ||
npm -v | ||
node --version | ||
which node |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@ECHO OFF | ||
node -v | ||
nodejs -v | ||
which node |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
echo "I will update nodejs environment" | ||
#npm install -g npm | ||
#!/bin/bash | ||
echo "I will update the nodejs application ..." | ||
npm --version | ||
npm i npm@latest -g | ||
sudo npm cache clean -f | ||
sudo npm install -g n | ||
sudo n stable |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
echo "I will update nodejs environment" | ||
npm install -g npm |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/bash | ||
npm install -g npm |
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,5 @@ | ||
|
||
package-lock.json | ||
# Logs | ||
logs | ||
*.log | ||
|