A simple, single-page project site for Context Sync. Designed for GitHub Pages.
- In your GitHub repo, go to Settings → Pages
- Under "Build and deployment" select Deploy from a branch
- Select
gh-pagesbranch and/ (root)folder - Click Save
Then push this folder to the gh-pages branch:
git checkout --orphan gh-pages
git rm -rf .
cp -r ../work-context-sync-site/* .
git add .
git commit -m "Initial site"
git push origin gh-pages- Move these files to a
docs/folder in your main branch - In GitHub repo: Settings → Pages
- Select Deploy from a branch →
main→/docs
- Add a file named
CNAMEcontaining your domain:context-sync.midtowntg.com - Push to gh-pages branch
- In your DNS, add a CNAME record:
- Name:
context-sync - Value:
midtown-technology-group.github.io
- Name:
- In GitHub repo: Settings → Pages, enter your custom domain
Simply open index.html in a browser, or use a local server:
python -m http.server 8000
# or
npx serve .- Edit colors in
styles.css(CSS variables at the top) - Replace logo SVG in
index.htmlwith your own - Update feature descriptions, installation steps, etc.
Site content under same AGPL-3.0 license as the project.