Merge pull request 'trf2' (#4) from trf2 into master

Reviewed-on: https://git.humbingo.in/Humbingo/react-placeholder/pulls/4
master
Jay Patel 2024-08-22 07:37:55 +00:00
commit e2f343af32
2 changed files with 51 additions and 0 deletions

25
setup.bat Normal file
View File

@ -0,0 +1,25 @@
@echo off
@REM REM Check if the folder exists, if not, create it
if not exist "./src/utils/api-manager" (
mkdir "./src/utils/api-manager"
)
@REM REM Check if the folder exists, if not, create it
if not exist "./src/utils/secure-route" (
mkdir "./src/utils/secure-route"
)
if not exist "./src/config" (
mkdir "./src/config"
)
@REM REM Clone repo1
git clone https://git.humbingo.in/Humbingo/api-manager.git "./src/check/api-manager"
git clone https://git.humbingo.in/Humbingo/secure-route.git "./src/check/secure-route"
copy "src\utils\secure-route\Setup\ComponentRegister.js.back" "./src/config/ComponentRegister.js"
copy "src\utils\secure-route\Setup\Global.js" "./src/config/Global.js"
copy "src\utils\secure-route\Setup\Global.json" "./src/config/Global.json"
npm install
pause

26
setup.sh Normal file
View File

@ -0,0 +1,26 @@
#!/bin/bash
# Check if the folder exists, if not, create it
if [ ! -d "./src/utils/api-manager" ]; then
mkdir -p "./src/utils/api-manager"
fi
# Check if the folder exists, if not, create it
if [ ! -d "./src/utils/secure-route" ]; then
mkdir -p "./src/utils/secure-route"
fi
# Check if the folder exists, if not, create it
if [ ! -d "./src/config" ]; then
mkdir -p "./src/config"
fi
# Clone repo1
git clone https://git.humbingo.in/Humbingo/api-manager.git "./src/utils/api-manager"
git clone https://git.humbingo.in/Humbingo/secure-route.git "./src/utils/secure-route"
# Copy files
cp "./src/utils/secure-route/Setup/ComponentRegister.js.back" "./src/config/ComponentRegister.js"
cp "./src/utils/secure-route/Setup/Global.js" "./src/config/Global.js"
cp "./src/utils/secure-route/Setup/Global.json" "./src/config/Global.json"
npm install