If you would like to develop on the browser:
Install node.js and npm.
Recommended: Node 16.x, npm 8.x. Node 19.x is not supported yet.
We use Gulp to compile Sass and JS as well as run the Jekyll build. It can be installed with npm as:
sudo npm install -g gulp📝If you are upgrading build system, checkout notes on upgrades.
Click to see instructions
npm installgulpIf all goes well it open the site in your browser at http://localhost:3000.
Error: spawn jekyll.bat ENOENT can be resolved by
gem install jekyllIf you are still facing the issue, perhaps the discussion here might would give some pointers.
After generating files by following above instructions.
Click to see instructions
- Create a new branch (for example,
update-website) from theasf-stagingbranch.
git checkout asf-staging
git checkout -b update-website- Copy the generated files to the website
contentfolder.
cp -r _site/* content/
git add content/*
git commit -m "Update SystemDS website with latest changes"- Add changes to the personal fork and create a PR against
asf-stagingbranch.
git push https://github.com/<id>/systemds-website update-websiteAn example, PR#83.
Instruction for adding release specific version of docs to https://systemds.apache.org/docs
Click to see instructions
Step 0: Prerequisites
git clone https://github.com/apache/systemds
git clone https://github.com/apache/systemds-websiteStep 1:
generate docs with as per https://github.com/apache/systemds/tree/main/docs
1.1. API Documentation
# In this case the release tag is 2.1.0-rc3
git checkout 2.1.0-rc3
cd systemds/docs
./updateAPI.sh1.2. Documentation website
# Build jekyll based docs
jekyll serve -wStep 2:
copy the contents to systemds-website repo
cd systemds-website
# create a new directory with release no.
mkdir content/docs/2.1.0
# copy the files in docs/_site folder to 2.1.0
cp -r ../systemds/docs/_site/* content/docs/2.1.0Then follow, https://github.com/apache/systemds-website#updating-the-website
Step 3:
Open a PR against asf-staging branch.
Example PR: apache#94
Website Preview at https://systemds.staged.apache.org
Step 4:
Production release via asf-site branch. For this approval from the
team is recommended.
Example PR: apache#95
Now, sync asf-staging and asf-site as:
# apply asf-staging commits onto asf-site
git rebase asf-staging asf-site
git push origin asf-siteImportant: Along with this update project metadata by modifying
release_version:in _src/_data/project.ymlAnd Update links in the documentation page as
9203626
To add a new dataset,
- create
<dataset-name>.mdfile in the_src/_datasetsfolder. - Upload dataset files to
_src/assets/datasets/<dataset-name>folder.
If the file sizes are big, use LFS
git lfs install
git add file.zip
git commit -m "Add big file"
git push origin mainAnd follow the Updating the website procedure.
- Get the details from https://people.apache.org/phonebook.html
- Example PR:
PR#104
And follow follow, Updating the website procedure.