Project site for Asciidoctor, composed in AsciiDoc, styled by Foundation, baked with Awestruct and published by Travis CI.
For instructions on how to install Awestruct and its dependencies, refer to the section Install Awestruct below.
To preview the site locally, simply run the default rake build task:
rake
The default rake build task is preview, so you’re effectively typing:
rake preview
The preview task is just a short way of invoking Awestruct in development mode directly:
awestruct -d
Now visit http://localhost:4242 to preview the site.
To rebuild the site from a clean state, pass the --force flag to the preview task:
rake preview[--force]
You can pass any flag through to Awestruct using the syntax in the previous command.
If you just want to generate the site, run:
rake gen
Add new files (such as a new blog entry or image):
git add news/news-slug.adoc
or all new files present in a directory (it only affects new files, skips files already committed)
git add news/
Commit all files marked to be committed, including new files that were just added:
git commit -m 'your message here'
Commit all files that have changed, even if not marked to be committed:
git commit -a -m 'your message here'
Make sure there are no files that are "untracked" or "modified":
git status
You should see:
nothing to commit (working directory clean)
Now you are ready to deploy.
The following commands will push changes (git push), clean build the site (--force -g) using the production profile (-P production), then deploy it to github pages (--deploy):
git push awestruct -P production --force -g --deploy
Or simply run the prepared rake build task (to deploy locally):
rake deploy
Or just push and let Travis CI do the work of deploying the site:
rake push
If you want to push without triggering a publish, add the following to the commit message:
[ci skip]
First, install RVM. Trust me on this.
$ curl -#L https://get.rvm.io | bash -s stable --ruby
Next, setup an RVM gemset for working with the Asciidoctor site:
$ rvm use 2.3.3@asciidoctor.org --create
At this point, you could install Awestruct directly, but since the site build has some additional dependencies, it’s best to let bundler handle the installation. Bundler will also ensure that you are using the correct versions of each gem when you run Awestruct.
$ bundle install
You’re now Awestruct!
The site runs on the domain name asciidoctor.org, which is specified in the CNAME file. The GitHub server automatically sets up redirects that point from www.asciidoctor.org to asciidoctor.org.
See the following help page for more details: https://help.github.com/articles/setting-up-a-custom-domain-with-github-pages
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。