Add MetaDome portal: world map, space command, world directory

This commit is contained in:
Commander 2026-04-07 16:17:31 -04:00
parent 5c0d50adfb
commit e7e03d6e6d
5 changed files with 53 additions and 1 deletions

View File

@ -1,2 +1,29 @@
# meta-dome # MetaDome
VR/AR worldbuilding platform — sovereign virtual spaces, spatial computing, and interconnected digital worlds.
## Architecture
- **46 PHP pages**: Full-stack world management, mapping, intelligence, communications
- **Spatial computing**: WebXR-ready 3D environments
- **Domain**: [meta-dome.com](https://meta-dome.com)
## Key Pages
| Page | Purpose |
|------|---------|
| `index.php` | Main portal |
| `map.php` | World map interface |
| `worlds.php` | World directory and management |
| `space-command.php` | Spatial command center |
## Stack
- PHP 8.x backend
- WebGL/Three.js for 3D rendering
- WebXR API for VR headset support
- Real-time WebSocket for multiplayer
## License
AGPL-3.0 — GoSiteMe Inc.

8
index.php Normal file
View File

@ -0,0 +1,8 @@
<?php
/**
* MetaDome meta-dome.com Domain Entry Point
* Serves the MetaDome landing page from the main GoSiteMe codebase.
* __DIR__ in the required file resolves to its physical location,
* so all includes/db-config paths work automatically.
*/
require '/home/gositeme/domains/gositeme.com/public_html/metadome-landing.php';

5
map.php Normal file
View File

@ -0,0 +1,5 @@
<?php
/**
* MetaDome Park Map meta-dome.com/map entry point
*/
require '/home/gositeme/domains/gositeme.com/public_html/metadome-map.php';

6
space-command.php Normal file
View File

@ -0,0 +1,6 @@
<?php
/**
* Space Command (SPACECOM) meta-dome.com/space-command entry point
* Serves from the main GoSiteMe codebase.
*/
require '/home/gositeme/domains/gositeme.com/public_html/space-command.php';

6
worlds.php Normal file
View File

@ -0,0 +1,6 @@
<?php
/**
* MetaDome VR Worlds Directory
* Serves from the main GoSiteMe codebase.
*/
require '/home/gositeme/domains/gositeme.com/public_html/vr-worlds.php';