Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jinnlynn/gude
Gude is a simple static site generator, written in Python.
https://github.com/jinnlynn/gude
Last synced: about 2 months ago
JSON representation
Gude is a simple static site generator, written in Python.
- Host: GitHub
- URL: https://github.com/jinnlynn/gude
- Owner: JinnLynn
- License: other
- Created: 2013-01-09T09:23:25.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-08T11:32:51.000Z (over 11 years ago)
- Last Synced: 2023-03-23T13:09:51.164Z (almost 2 years ago)
- Language: Python
- Size: 1.24 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gude
## What is Gude?
[Gude][] is a simple static site generator, written in Python.
* Simple, very easy to use
* Work with GIT & GitHub
* Completely static output![Gude](http://i.imgur.com/qBb5l.png)
## Installation
```
git clone git://github.com/JinnLynn/gude.git && cd gude && python setup.py install
```## USAGE
#### create a new gude site
```
gude init [-h|-f]
```#### configuring gude site
edit `site.yaml` for public settings and `privacy.yaml` for private settings, here are example: [site-example.yaml][] [privacy-example.yaml][]
[site-example.yaml]: https://github.com/JinnLynn/gude/blob/master/docs/site-example.yaml
[privacy-example.yaml]: https://github.com/JinnLynn/gude/blob/master/docs/privacy-example.yaml#### add new article
```
gude add -t "TITLE" -f "FILENAME" [--status "STATUS"] [--layout "LAYOUT"] [--html]
```#### build site
```
gude build [-l|--local] [-p|--preview] [--less] [--less-compress] [-i|--info]
```#### serve site
```
gude serve [-p PORT|--port PORT] [-s|--silent]
```#### publish site
```
gude [-c|--clean] [-f|--force] [-b|--build]
```#### backup site
```
gude [-c|--clean] [-f|--clean] [-r|--remote]
```## LICENSE
The MIT license.
For more information, please visit project page at http://jeeker.net/projects/gude/.
[Gude]: http://jeeker.net/projects/gude/