39 lines
1005 B
Markdown
39 lines
1005 B
Markdown
# Spaces StartOS Guide
|
|
|
|
A simple, static setup-guide website for a fictional product called **Spaces on StartOS**. Built as a self-contained demo with boilerplate content and AI-generated placeholder screenshots.
|
|
|
|
## Structure
|
|
|
|
```
|
|
.
|
|
├── index.html # Single-page guide with sidebar TOC
|
|
├── styles.css # Styling (modern, responsive, light theme)
|
|
├── script.js # Scrollspy for the table-of-contents
|
|
├── images/ # Placeholder screenshots
|
|
└── README.md
|
|
```
|
|
|
|
## Running locally
|
|
|
|
No build step is required — open `index.html` in a browser, or serve the folder with any static server:
|
|
|
|
```bash
|
|
python3 -m http.server 8000
|
|
# then visit http://localhost:8000
|
|
```
|
|
|
|
## What's inside
|
|
|
|
The guide walks through:
|
|
|
|
1. Introduction to Spaces
|
|
2. Prerequisites
|
|
3. Installing StartOS
|
|
4. Configuring the instance
|
|
5. Creating your first Space
|
|
6. Verifying the installation
|
|
7. Troubleshooting
|
|
8. Next steps
|
|
|
|
All content, product details, and screenshots are illustrative.
|