Add MetaDome portal: world map, space command, world directory
This commit is contained in:
parent
5c0d50adfb
commit
e7e03d6e6d
29
README.md
29
README.md
@ -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
8
index.php
Normal 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
5
map.php
Normal 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
6
space-command.php
Normal 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
6
worlds.php
Normal 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';
|
||||||
Loading…
Reference in New Issue
Block a user