Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelliao/gitsite
Generate web site from git repo.
https://github.com/michaelliao/gitsite
docs-generator git site-generator
Last synced: about 2 months ago
JSON representation
Generate web site from git repo.
- Host: GitHub
- URL: https://github.com/michaelliao/gitsite
- Owner: michaelliao
- License: mit
- Created: 2023-10-27T13:44:04.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-07T12:50:20.000Z (4 months ago)
- Last Synced: 2024-09-07T14:09:29.603Z (4 months ago)
- Topics: docs-generator, git, site-generator
- Language: JavaScript
- Homepage: https://gitsite.org
- Size: 13.9 MB
- Stars: 31
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gitsite
![npm](https://img.shields.io/npm/v/gitsite-cli) ![build](https://github.com/michaelliao/gitsite/actions/workflows/gitsite.yml/badge.svg
) ![license](https://img.shields.io/github/license/michaelliao/gitsite)GitSite can build your well-organized Markdown documents and other resources to static web site deployed to GitHub pages, S3 bucket, etc.
### [https://gitsite.org](https://gitsite.org)
```mermaid
flowchart LR
md[Markdown Docs]
gitsite[gitsite-cli Tool]
build{Build}
deploy{Deploy}
html[Static Web Site]
md --> build
gitsite --> build
build --> html
html --> deploy
deploy --> github[GitHub Page]
deploy --> gitlab[GitLab Page]
deploy --> cloudflare[CloudFlare Page]
deploy --> s3[S3 Website Hosting]
deploy --> vercel[Vercel]
deploy --> nginx[Self-Hosted Nginx]
```