forked from mio/gemwriter
		
	
		
			
				
	
	
	
		
			1.6 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.6 KiB
		
	
	
	
	
	
	
	
Gemwriter
A little command-line helper for publishing Gemini sites or "capsules".
Options:
config                    Generate a config directory
page [capsule] [title]    Add a new page with the given title
post [capsule] [title]    Add a new gemlog post with the given title
index                     Generate an index page and feed of posts
publish                   Index and copy posts remotely using scp
help                      Show this help message
version                   Print version info
Requirements
- Linux or Unix-based OS
 - Lua 5.4 (other versions >= 5.1 will probably be fine but are untested)
 - scp or rsync, to transfer files remotely
 
Build
- 
Install Lua and luastatic.
 - 
Clone this repository and change into the directory. Run:
luastatic gemwriter.lua env.lua util.lua lang/en.lua \ /usr/lib/liblua.so -I/usr/include -o gemwriterThe paths to
liblua.soand the development headers (i.e./usr/include/lua.h) may need to be adjusted for your distribution. - 
Move the
gemwriterexecutable to a location in your$PATH. 
Quick start
- 
Generate a new config:
gemwriter config - 
Edit
~/.config/gemwriter/config.tomlwith the correct details about your capsule and gemlog. - 
Create a new gemlog post:
gemwriter post "Hello World!" - 
Publish your capsule:
gemwriter publish 
License
BSD-3-Clause