Asciidoc hugo site with netlify
up vote
0
down vote
favorite
I want to build a hugo site with asciidoc content and host it in netlify. I was able to run the site locally after installing ascii and asciidoctor in my windows machine.
gem install asciidoc
gem install asciidoc
Prior to this, I got below error in my console and no content in the browser.
ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
8:35:09 AM: ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
8:35:09 AM: ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
Now m getting the same error in netlify site build and it's getting failed during deployment.
Can someone please suggest any missing additional setup or configuration?
rubygems hugo netlify
add a comment |
up vote
0
down vote
favorite
I want to build a hugo site with asciidoc content and host it in netlify. I was able to run the site locally after installing ascii and asciidoctor in my windows machine.
gem install asciidoc
gem install asciidoc
Prior to this, I got below error in my console and no content in the browser.
ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
8:35:09 AM: ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
8:35:09 AM: ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
Now m getting the same error in netlify site build and it's getting failed during deployment.
Can someone please suggest any missing additional setup or configuration?
rubygems hugo netlify
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to build a hugo site with asciidoc content and host it in netlify. I was able to run the site locally after installing ascii and asciidoctor in my windows machine.
gem install asciidoc
gem install asciidoc
Prior to this, I got below error in my console and no content in the browser.
ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
8:35:09 AM: ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
8:35:09 AM: ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
Now m getting the same error in netlify site build and it's getting failed during deployment.
Can someone please suggest any missing additional setup or configuration?
rubygems hugo netlify
I want to build a hugo site with asciidoc content and host it in netlify. I was able to run the site locally after installing ascii and asciidoctor in my windows machine.
gem install asciidoc
gem install asciidoc
Prior to this, I got below error in my console and no content in the browser.
ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
8:35:09 AM: ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
8:35:09 AM: ERROR 2018/11/11 03:05:08 asciidoctor / asciidoc not found in $PATH: Please install.
8:35:09 AM: Leaving AsciiDoc content unrendered.
Now m getting the same error in netlify site build and it's getting failed during deployment.
Can someone please suggest any missing additional setup or configuration?
rubygems hugo netlify
rubygems hugo netlify
edited Nov 11 at 5:31
Eternal_flame-AD
3126
3126
asked Nov 11 at 3:26
Sudip7
85732033
85732033
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Make sure to add your /Gemfile
and /Gemfile.lock
to your project root for asciidoc
. Netlify uses them to identify that the build needs Ruby included.
Gemfile
(example)
source 'https://rubygems.org'
gem 'asciidoc'
You can use bundle install
locally to create Gemfile.lock
from a Gemfile
$ gem install bundler
$ bundle install
You can also set Ruby version via a /.ruby-version
file. See docs for supported Ruby versions on Netlify.
Thanks. This is a experimental site for personal use. What factors should be considered for choosing the version for Hugo and ruby and how it's going to affect the current or future build.
– Sudip7
Nov 11 at 22:44
Those are going to be the versions that your app supports. I cannot answer that question for you. But I would suggest you try to use the latest stable releases.
– talves
Nov 12 at 0:19
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Make sure to add your /Gemfile
and /Gemfile.lock
to your project root for asciidoc
. Netlify uses them to identify that the build needs Ruby included.
Gemfile
(example)
source 'https://rubygems.org'
gem 'asciidoc'
You can use bundle install
locally to create Gemfile.lock
from a Gemfile
$ gem install bundler
$ bundle install
You can also set Ruby version via a /.ruby-version
file. See docs for supported Ruby versions on Netlify.
Thanks. This is a experimental site for personal use. What factors should be considered for choosing the version for Hugo and ruby and how it's going to affect the current or future build.
– Sudip7
Nov 11 at 22:44
Those are going to be the versions that your app supports. I cannot answer that question for you. But I would suggest you try to use the latest stable releases.
– talves
Nov 12 at 0:19
add a comment |
up vote
0
down vote
Make sure to add your /Gemfile
and /Gemfile.lock
to your project root for asciidoc
. Netlify uses them to identify that the build needs Ruby included.
Gemfile
(example)
source 'https://rubygems.org'
gem 'asciidoc'
You can use bundle install
locally to create Gemfile.lock
from a Gemfile
$ gem install bundler
$ bundle install
You can also set Ruby version via a /.ruby-version
file. See docs for supported Ruby versions on Netlify.
Thanks. This is a experimental site for personal use. What factors should be considered for choosing the version for Hugo and ruby and how it's going to affect the current or future build.
– Sudip7
Nov 11 at 22:44
Those are going to be the versions that your app supports. I cannot answer that question for you. But I would suggest you try to use the latest stable releases.
– talves
Nov 12 at 0:19
add a comment |
up vote
0
down vote
up vote
0
down vote
Make sure to add your /Gemfile
and /Gemfile.lock
to your project root for asciidoc
. Netlify uses them to identify that the build needs Ruby included.
Gemfile
(example)
source 'https://rubygems.org'
gem 'asciidoc'
You can use bundle install
locally to create Gemfile.lock
from a Gemfile
$ gem install bundler
$ bundle install
You can also set Ruby version via a /.ruby-version
file. See docs for supported Ruby versions on Netlify.
Make sure to add your /Gemfile
and /Gemfile.lock
to your project root for asciidoc
. Netlify uses them to identify that the build needs Ruby included.
Gemfile
(example)
source 'https://rubygems.org'
gem 'asciidoc'
You can use bundle install
locally to create Gemfile.lock
from a Gemfile
$ gem install bundler
$ bundle install
You can also set Ruby version via a /.ruby-version
file. See docs for supported Ruby versions on Netlify.
answered Nov 11 at 17:59
talves
5,05811131
5,05811131
Thanks. This is a experimental site for personal use. What factors should be considered for choosing the version for Hugo and ruby and how it's going to affect the current or future build.
– Sudip7
Nov 11 at 22:44
Those are going to be the versions that your app supports. I cannot answer that question for you. But I would suggest you try to use the latest stable releases.
– talves
Nov 12 at 0:19
add a comment |
Thanks. This is a experimental site for personal use. What factors should be considered for choosing the version for Hugo and ruby and how it's going to affect the current or future build.
– Sudip7
Nov 11 at 22:44
Those are going to be the versions that your app supports. I cannot answer that question for you. But I would suggest you try to use the latest stable releases.
– talves
Nov 12 at 0:19
Thanks. This is a experimental site for personal use. What factors should be considered for choosing the version for Hugo and ruby and how it's going to affect the current or future build.
– Sudip7
Nov 11 at 22:44
Thanks. This is a experimental site for personal use. What factors should be considered for choosing the version for Hugo and ruby and how it's going to affect the current or future build.
– Sudip7
Nov 11 at 22:44
Those are going to be the versions that your app supports. I cannot answer that question for you. But I would suggest you try to use the latest stable releases.
– talves
Nov 12 at 0:19
Those are going to be the versions that your app supports. I cannot answer that question for you. But I would suggest you try to use the latest stable releases.
– talves
Nov 12 at 0:19
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53245578%2fasciidoc-hugo-site-with-netlify%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown