- landing/ structure with src/, Dockerfile, nginx.conf - docker-compose.landing.yml on port 8080:80 - status.js with build status badge (CI, commit, issues) - api/status.json fallback - Glassmorphism cyberpunk styling matching existing design
38 lines
499 B
Markdown
38 lines
499 B
Markdown
# Phantom Protocol Landing
|
|
|
|
## Development
|
|
|
|
To start the development server:
|
|
```bash
|
|
npm start
|
|
```
|
|
|
|
To build for production:
|
|
```bash
|
|
npm run minify
|
|
```
|
|
|
|
To run in a Docker container:
|
|
```bash
|
|
docker compose up landing
|
|
```
|
|
|
|
## Folder Structure
|
|
|
|
```
|
|
src/
|
|
├── index.html
|
|
├── about.html
|
|
├── architecture.html
|
|
├── community.html
|
|
├── docs.html
|
|
├── download.html
|
|
├── css/
|
|
├── js/
|
|
└── ...
|
|
```
|
|
|
|
## Ports
|
|
|
|
- Local development: 8000
|
|
- Docker container: 8080 |