This is an automated email from the ASF dual-hosted git repository.
rawkintrevo pushed a commit to branch 525
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/525 by this push:
new fa00a2ebd Add build website instructions to the website directory
fa00a2ebd is described below
commit fa00a2ebd73631eee4116dabfbb2244eafa2f4a2
Author: bottrevo <[email protected]>
AuthorDate: Mon Mar 24 19:15:06 2025 +0000
Add build website instructions to the website directory
---
website/build_site_instructions.md | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/website/build_site_instructions.md
b/website/build_site_instructions.md
new file mode 100644
index 000000000..7274def2d
--- /dev/null
+++ b/website/build_site_instructions.md
@@ -0,0 +1,21 @@
+# Building the Website
+
+## Prerequisites
+- Ensure Ruby is installed on your system.
+- Install Bundler by running `gem install bundler`.
+
+## Building the Site
+1. Navigate to the website directory:
+ ```
+ cd website
+ ```
+2. Install required gems using Bundler:
+ ```
+ bundle install
+ ```
+3. Build the site:
+ ```
+ ./build_site.sh
+ ```
+
+This will generate the static site content which can be served using any
standard web server.