start.mykk.us 🚀

A minimal, self-hostable web start page inspired by start.me. Built with simple HTML/CSS/JS for lightweight deployment.

📦 Features

🏠 Self‑hosting Guide

1. Clone the repo

git clone https://github.com/MichalAFerber/start.mykk.us.git
cd start.mykk.us

2. Serve locally

Choose your preferred static‑file server:

npm install -g http-server
http-server .
# Python 3
python3 -m http.server 8000
php -S localhost:8000

Then visit http://localhost:8000 in your browser.

3. Deploy on the web

Host on any static hosting platform:

⚙️ Configuration

Edit data/links.json (or similar file) to personalize:

[
  {
    "label": "GitHub",
    "url": "https://github.com",
    "icon": "github"
  },
  {
    "label": "Docs",
    "url": "https://docs.start.mykk.us",
    "icon": "book"
  }
]

Customize look via CSS variables in styles/theme.css:

:root {
  --bg-color: #fff;
  --text-color: #222;
  --accent-color: #007acc;
  --widget-bg: #f7f7f7;
}

Change these to tweak light/dark mode, colors, spacing, etc.

Custom CSS / JS

For advanced customizations:

Those files are optional and will override defaults if present.

đź§Ş Testing & Development

👥 Contributing

  1. Fork the repository
  2. Create a descriptive branch
  3. Make changes and commit with clear messages
  4. Submit a Pull Request
  5. We’ll review & merge your enhancements!

📜 License

MIT License

🚀 TL;DR

Setup StepWhat to Do
git cloneClone the repo
Static ServerUse Python / Node / PHP locally
DeployUse GitHub Pages, Netlify, Vercel, etc.
CustomizeEdit JSON, CSS, JS
ContributeFork → PR → merge