Home
Massive Wiki Roadmap Pier2Pier Massive Wiki Builder redesign
wiki link test page Mistletoe parser test page
The Walrus
Search All Pages Recent Changes
Notes on attempting to start up a new MW using the starter-repo
2022-07-25:
git clone --recurse-submodules ...
git submodule update --remote
2022-07-26:
.massivewikibuilder/massivewikibuilder
2022-07-27 (Bill) - to get the submodules to follow the branches: - configure the submodules with specific branch spec
cd wiki-root-directory git config -f .gitmodules submodule..massivewikibuilder/massivewikibuilder.branch pk-v2.0.0-rc-20220726 git config -f .gitmodules submodule..massivewikibuilder/massive-wiki-themes.branch pk-updates-for-mwbv2-20220726 git submodule update --remote --recursive git config --file=.gitmodules -l
now ready to test (TODO: local testing notes) MWB with updated branch submodules: - added a Sidebar and MWB succeeds using massive-wiki-themes/basso - Note: replace basso in .massivewikibuilder/this-wiki-themes
.massivewikibuilder/this-wiki-themes
next step: test with search - step 1: npm ci in massivewikibuilder directory to install local node_modules - step 2: MWB build adding --lunr option to the MWB command - two breakdowns: - (1) no "Search" button on the navbar (?) - (2) able to use the "Search" link I included on the Sidebar; however, search not initiated on key-down (so some code did not get transferred to the MWB branch) - needed to copy _navbar.html_ and search.html from developer-massive-wiki basso theme to myStarterWiki this-wiki-themes/basso - (do not have permissions to push to MWT branch; create a pull request?)
npm ci
massivewikibuilder
node_modules
--lunr
_navbar.html_
search.html
developer-massive-wiki
myStarterWiki
this-wiki-themes/basso
test case. here is Bill's plan:
this is the "update" incantation:
git submodule update --recursive --remote
but if you're setting up submodules for the first time, you need to do this, to turn the submodules references into Git folders:
git submodule update --init --recursive