added fat build scripts for the FAT environment, it works!, I had to create a workspace to create the application in. Also had to manually copy the images and css to the application.

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3406 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
PriestJ
2008-01-28 18:33:23 +00:00
parent b60557ab63
commit 34575be877
16 changed files with 627 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ sqlplus %3/%4@%5 @Data\Seed\create_passwords.sql
if "%6"=="" goto :done
if "%6"=="demo" goto :demo
if "%6"=="test" goto :test
if "%6"=="fat" goto :fat
:demo
@echo Demo
@@ -49,8 +50,21 @@ cd ..\..
goto :done
:fat
@echo Install FAT data
cd Data\fat
call InstallData %3/%4@%5
@echo Installed fat data
@echo Installing fat application in APEX...
ruby apex_auto_install.rb
cd ..\..
@echo fat install Complete
goto :done
:usage
echo "usage InstallMIP sys_name sys_password app_name app_password db_connect_string [demo|test]"
echo "usage InstallMIP sys_name sys_password app_name app_password db_connect_string [demo|test|fat]"
:done