-
Notifications
You must be signed in to change notification settings - Fork 0
Add installation info from metafacture/metafacture-documentation/pull/56 #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,8 @@ Since [Metafacture Fix](https://github.com/metafacture/metafacture-fix) is intro | |
It should help you to get accustomed with Metafacture Core and Metafacture Fix. | ||
Have fun. | ||
|
||
The content pages can be found [in `/docs/`](/docs/) | ||
|
||
Lesson plan: | ||
|
||
[01 Introducing metafacture](./docs/01_Introducing_Metafacture.md) | ||
|
@@ -37,3 +39,24 @@ Lesson plan: | |
|
||
[11 Mapping Marc to Dublin Core](./docs/11_MARC_to_Dublin_Core.html) | ||
|
||
## Testing | ||
|
||
### Installation | ||
If you are on debian derivates go install build-essentials: | ||
``` | ||
apt install build-essential | ||
``` | ||
Then you can use the Ruby Dependency Management to build all you need: | ||
``` | ||
bundle install | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After running
Is it only me or should installatioj of However, after installing There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the feedback, since it is the description from @dr0i which he introduced in metafacture-documentation, he probably can help There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @acka47 could you try this (as root or sudoing and beeing in this repo's directory):
Ignore Warnings , the server should start at http://127.0.0.1:4000. If it does not , I am clueless. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Did so,
I did
This is getting on my nerves. If it works for others, you might already merge this PR. |
||
``` | ||
Start jekyll like this: | ||
``` | ||
bundle exec jekyll serve | ||
``` | ||
If you experience troubles, make sure to not have jekyll installed via you | ||
package manager. On debian derivates do: | ||
``` | ||
apt purge jekyll | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here: Does this work for anybody without |
||
``` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this work for anybody without
sudo
? At least it doesn't for me.