This is the official website for "Master Plan 4: Sustainable Multiplanetary Civilization Through Interplanetary AI" by David Orban.
.
├── .github/workflows/ # GitHub Actions workflows
│ └── deploy.yml # Deployment configuration
├── static/ # Static assets
│ ├── css/ # Stylesheets
│ ├── js/ # JavaScript files
│ ├── images/ # Image assets
│ └── pdf/ # PDF documents
├── pages/ # Additional HTML pages
│ ├── executive-summary/ # Executive summary section
│ └── sections/ # Detailed content sections
├── content/ # Source content
│ └── masterplan4.md # Full document in Markdown
├── CNAME # Custom domain configuration
├── index.html # Homepage
└── README.md # Project documentation
This website is automatically deployed to GitHub Pages when changes are pushed to the main branch.
- GitHub account
- Custom domain (optional)
-
Repository Settings:
- Go to Settings > Pages
- Set source to
GitHub Actions
-
Custom Domain (Optional):
- Update the
CNAMEfile with your domain - Configure DNS settings with your domain registrar:
- A records for apex domain:
@ A 185.199.108.153@ A 185.199.109.153@ A 185.199.110.153@ A 185.199.111.153
- CNAME for www subdomain:
www CNAME your-username.github.io
- A records for apex domain:
- Update the
-
Deployment:
- Push changes to
mainbranch - GitHub Actions will automatically build and deploy the site
- Push changes to
-
Clone the repository:
git clone https://github.com/your-username/masterplan4.git cd masterplan4 -
Start a local server:
python3 -m http.server 8000
Then open http://localhost:8000 in your browser.
This is a static website that can be served by any web server. No build process is required.
-
Clone the repository:
git clone https://github.com/davidorban/masterplan4.git cd masterplan4 -
Use a local web server to serve the files. For example, with Python:
# Python 3 python -m http.server 8000 -
Open http://localhost:8000 in your browser.
This website is designed to be deployed to GitHub Pages, Netlify, Vercel, or any static web hosting service.
- Push the repository to GitHub
- Go to Settings > Pages
- Select the main branch as the source
- Save the settings
The site will be available at https://<username>.github.io/masterplan4
- Homepage: Edit
index.html - Executive Summary: Edit
pages/executive-summary.html - Styles: Edit
static/css/styles.css - JavaScript: Edit
static/js/main.js - PDF: Replace
masterplan4.pdfwith the latest version
This work is licensed under a Creative Commons Attribution 4.0 International License.