Files
metaverseDubai/docs/reference/QUICK_COMMANDS.md
2026-07-07 03:43:19 -07:00

102 lines
1.5 KiB
Markdown

# Quick CLI Commands - Dubai Metaverse
## Project Management
### Launch Editor
```bash
./launch_editor.sh
```
### Verify Project Setup
```bash
./scripts/setup/verify_project_setup.sh
```
### Verify UE5 Installation
```bash
./scripts/setup/verify_ue5_installation.sh
```
## Data Acquisition
### Acquire OSM Data
```bash
cd data && ./acquire_osm_data.sh
```
### Import OSM Data (Manual)
```bash
python3 scripts/data/import_osm_data.py \
--output data/processed/dubai_marina_buildings.geojson \
--bounds "25.07,55.13,25.09,55.15"
```
### Convert GIS Data
```bash
python3 scripts/data/gis_to_unreal.py \
data/elevation/dem.tif \
--output data/processed/terrain_heightmap.raw \
--format raw
```
## Build & Monitoring
### Monitor UE5 Build
```bash
./scripts/monitoring/ue5_build_monitor.sh
```
### Check Build Status
```bash
ps aux | grep "make.*UnrealEditor"
tail -f ~/UnrealEngine/build.log
```
## Validation
### Validate Project
```bash
./scripts/validation/validate_project.sh
```
### Validate Assets
```bash
./scripts/validation/validate_assets.sh
```
## Git Operations
### Initialize Git LFS
```bash
git lfs install
git lfs track "*.uasset"
git lfs track "*.umap"
git lfs track "*.uproject"
```
### Check Git LFS Status
```bash
git lfs ls-files
```
## Project Information
### View Project Status
```bash
cat PROGRESS_REPORTS/PROJECT_STATUS.md
```
### View Next Steps
```bash
cat docs/setup/NEXT_STEPS.md
cat docs/setup/NEXT_STEPS.md
```
### View Project Health
```bash
cat docs/PROJECT_HEALTH.md
```
---
**Last Updated**: 2024-11-21