ryoga-chan / djmngr-hp

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

Home Page:https://ryoga-chan.github.io/djmngr-hp/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

https://ryoga-chan.github.io/djmngr-hp/

License:GNU General Public License v3.0


Languages

Language:Haml 92.8%Language:Ruby 5.3%Language:Shell 0.8%Language:JavaScript 0.6%Language:SCSS 0.4%