Skip to content

Doujinshi manager | Manage a collection of zipped image sets (documentation)

License

Notifications You must be signed in to change notification settings

ryoga-chan/djmngr-hp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Doujinshi manager documentation

This is the home page of djmngr application.

commands

gem install middleman

middleman init homepage-src && cd homepage-src

# convert erb files to haml
gem install html2haml
html2haml -e input.erb output.haml

# create pages with live preview on port 3000
bin/server  # middleman server ...

# build HTML and assets
bin/build   # middleman build

# push new version to github pages
bin/publish

create gh-pages empty branch on git

configure middleman, add in config.rb:

# disable github Jekyll magic
touch source/.nojekyll

# copy repo config and create empty branch
cp -ra .git build/
cd build
git switch --orphan gh-pages
git commit --allow-empty -m "initial commit"
git push -u gh-pages