sistemato readme

This commit is contained in:
Gaetano Savo 2025-03-20 10:33:02 +01:00
parent dc5808b1e3
commit ac7b774819
2 changed files with 42 additions and 42 deletions

View File

@ -1,107 +1,107 @@
# SVN Project Checkout Steps # SVN Project Checkout Steps
## Richieste ## Richieste
- voglio scaricare il progetto su https://svn.armundia.com/svn/PRJarm_am/branches/ISPBEstero/ADV360-BES-JB8_B2024_2/arm_am-pom
- scarica anche https://svn.armundia.com/svn/PRJarm_am/branches/ISPBEstero/ADV360-BES-JB8_B2024_2/asset-gui - voglio scaricare il progetto su <https://svn.armundia.com/svn/PRJarm_am/branches/ISPBEstero/ADV360-BES-JB8_B2024_2/arm_am-pom>
- scarica anche <https://svn.armundia.com/svn/PRJarm_am/branches/ISPBEstero/ADV360-BES-JB8_B2024_2/asset-gui>
- crea un readme con le richieste che ho fatto - crea un readme con le richieste che ho fatto
- crea uno script powershell che fa il build ed il deploy di arm_am-pom su C:\Dev2012\BUILDERS\jboss-eap-8.0 - crea uno script powershell che fa il build ed il deploy di arm_am-pom su C:\Dev2012\BUILDERS\jboss-eap-8.0
- il pom è nel folder arm_am-pom - il pom è nel folder arm_am-pom
- java 17 è su C:\Dev2012\BUILDERS\java\jdk-17.0.9 - java 17 è su C:\Dev2012\BUILDERS\java\jdk-17.0.9
- aggiorna il readme - aggiorna il readme
- deve usare standalone-full-ADV360-BES-EAP_8_POSTGRES.xml - deve usare standalone-full-ADV360-BES-EAP_8_POSTGRES.xml
- voglio compilare e lanciare il progetto asset-gui - voglio compilare e lanciare il progetto asset-gui
- jboss deve usare le opzioni "-DIDServer=GS -Dbtf.PathToParse=C:\Dev2012\advc0\in -Djava.awt.headless=true -DFilOptimize=true -DMTH_VALID_JB=internal -DskQueueElab=GS -DskQueueWrite=GS -DmtSession=GS" - jboss deve usare le opzioni "-DIDServer=GS -Dbtf.PathToParse=C:\Dev2012\advc0\in -Djava.awt.headless=true -DFilOptimize=true -DMTH_VALID_JB=internal -DskQueueElab=GS -DskQueueWrite=GS -DmtSession=GS"
- C:\Dev2012\BUILDERS\jboss-eap-8.0\bin\add-user.bat -u admin -p admin.123 -g SuperUser --silent
- dir $env:USERPROFILE\.m2\repository\com\armundia -Recurse | Where-Object { $_.Name -like "*.pom" }
## Projects Downloaded (Sync-Projects.ps1)
- C:\Dev2012\BUILDERS\jboss-eap-8.0\bin\add-user.bat" -u admin -p admin.123 -g SuperUser --silent
dir $env:USERPROFILE\.m2\repository\com\armundia -Recurse | Where-Object { $_.Name -like "*.pom" }
## Projects Downloaded
1. ARM AM POM Project
```
svn checkout https://svn.armundia.com/svn/PRJarm_am/branches/ISPBEstero/ADV360-BES-JB8_B2024_2/arm_am-pom
```
2. Asset GUI Project
```
svn checkout https://svn.armundia.com/svn/PRJarm_am/branches/ISPBEstero/ADV360-BES-JB8_B2024_2/asset-gui
```
Both projects were checked out at revision 132783.
## Project Structure ## Project Structure
### arm_am-pom ### arm_am-pom
- Java/JEE project containing: - Java/JEE project containing:
- arm_am-ejb: EJB modules and web services - arm_am-ejb: EJB modules and web services
- arm_am-jUnit: Test files - arm_am-jUnit: Test files
- Various resources and configuration files - arm_am-web: Web application components
### asset-gui ### asset-gui
- Web application frontend project containing: - Web application frontend project containing:
- Frontend source code in `source` directory - Frontend source code in `source` directory
- UI libraries (Font Awesome, Bootstrap, amCharts, Roboto fonts) - UI libraries (Font Awesome, Bootstrap, amCharts, Roboto fonts)
- Environment configurations (LOCAL, VUB, CIB, PBZ, KOPER)
- Build configuration files (gulpfile.js, package.json, babel.config.js) - Build configuration files (gulpfile.js, package.json, babel.config.js)
## Build and Deployment Scripts ## Build and Deployment Scripts
### Sync-Projects.ps1
PowerShell script to sync projects:
- Scarica usando svn i progetti arm_am-pom, asset-gui e tutti i moduli utilizzati.
- Esegue il build dei jar dei moduli utilizzati e li aggiunge al repository mvn locale
### start-jboss.ps1 ### start-jboss.ps1
PowerShell script to start JBoss EAP 8.0 server: PowerShell script to start JBoss EAP 8.0 server:
- Uses Java 17 from `C:\Dev2012\BUILDERS\java\jdk-17.0.9` - Uses Java 17 from `C:\Dev2012\BUILDERS\java\jdk-17.0.9`
- Uses `standalone-full-ADV360-BES-EAP_8_POSTGRES.xml` configuration - Uses `standalone-full-ADV360-BES-EAP_8_POSTGRES.xml` configuration
- Starts JBoss in standalone mode with debug enabled - Sets required system properties
- Binds to all interfaces (0.0.0.0) - Admin console available at <http://localhost:9990>
- Management console available at http://localhost:9990 - JBoss logs location: `C:\Dev2012\BUILDERS\jboss-eap-8.0\standalone\log\server-info.log`
- JBoss logs location: `C:\Dev2012\BUILDERS\jboss-eap-8.0\standalone\log\server.log`
### stop-jboss.ps1 ### stop-jboss.ps1
PowerShell script to stop JBoss EAP 8.0 server: PowerShell script to stop JBoss EAP 8.0 server:
- Finds and stops the JBoss process safely - Finds and stops the JBoss process safely
- Waits to ensure process is fully stopped - Waits to ensure process is fully stopped
### build-and-deploy.ps1 ### build-and-deploy.ps1
PowerShell script to build and deploy the arm_am-pom project: PowerShell script to build and deploy the arm_am-pom project:
- Uses Java 8 for building
- Uses Java 17 for building
- Uses Maven profile `adv360-DEV` - Uses Maven profile `adv360-DEV`
- Builds modules in correct order: - Builds the EAR file
1. Parent POM
2. EJB module
3. WAR module
4. EAR module
- Deploys the EAR file to JBoss deployment directory - Deploys the EAR file to JBoss deployment directory
### build-and-run-asset-gui.ps1 ### build-and-run-asset-gui.ps1
PowerShell script to build and run the asset-gui project: PowerShell script to build and run the asset-gui project:
- Installs Node.js dependencies (npm install) - Installs Node.js dependencies (npm install)
- Builds the project with minification (gulp build --minified) - Builds the project with minification (gulp build --minified)
- Starts the development server (gulp serve) - Starts development server
- Development server will be available at http://localhost:3000 - Development server will be available at <http://localhost:3000>
## Build and Deploy Workflow ## Build and Deploy Workflow
1. Start JBoss server: 1. Start JBoss server:
```powershell ```powershell
.\start-jboss.ps1 .\start-jboss.ps1
``` ```
2. Build and deploy the backend: 2. Build and deploy the backend:
```powershell ```powershell
.\build-and-deploy.ps1 .\build-and-deploy.ps1
``` ```
3. Build and run the frontend: 3. Build and run the frontend:
```powershell ```powershell
.\build-and-run-asset-gui.ps1 .\build-and-run-asset-gui.ps1
``` ```
4. Monitor deployment: - Access JBoss admin console at <http://localhost:9990>
- Check JBoss logs at `C:\Dev2012\BUILDERS\jboss-eap-8.0\standalone\log\server.log` - Access asset-gui frontend at <http://localhost:3000>
- Access JBoss admin console at http://localhost:9990
- Access asset-gui frontend at http://localhost:3000
## Required Configuration ## Required Configuration
- JBoss configuration file: `standalone-full-ADV360-BES-EAP_8_POSTGRES.xml` must be present in `C:\Dev2012\BUILDERS\jboss-eap-8.0\standalone\configuration\`
- JBoss configuration file: `standalone-full-ADV360-BES-EAP_8_POSTGRES.xml` must be present in
`C:\Dev2012\BUILDERS\jboss-eap-8.0\standalone\configuration\`
- Node.js must be installed to build and run asset-gui - Node.js must be installed to build and run asset-gui

View File

@ -43,7 +43,7 @@ try {
# Start the development server # Start the development server
Write-Host "Starting development server..." -ForegroundColor Yellow Write-Host "Starting development server..." -ForegroundColor Yellow
gulp serve gulp watch
} finally { } finally {
# Return to original directory # Return to original directory
Pop-Location Pop-Location