mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
* Config - remove unused keys * Remove aliases * Script - minor updates * Remove bitcoin papers * Delete all but a couple example events * Update all QE BIP links to reflect current reop location * One more BIP link update
11 lines
338 B
Bash
Executable file
11 lines
338 B
Bash
Executable file
#!/bin/bash
|
|
# Build static preview site that can be hosted on Github pages (https://pages.github.com/)
|
|
# Note: run init_env.sh first to prepare Ruby
|
|
|
|
export BITCOINORG_BUILD_TYPE=preview
|
|
|
|
# Update summaries.md
|
|
make manual-update-summaries-file
|
|
|
|
# Build preview with all plugins, but minimal language support
|
|
ENABLED_LANGS="" make preview
|