2022-09-05 14:33:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-10-29 14:27:16 +00:00
|
|
|
echo "Install Deno"
|
|
|
|
# curl -fsSL https://deno.land/install.sh | sh
|
|
|
|
# export PATH=~/.deno/bin:$PATH
|
|
|
|
|
2022-09-05 14:33:56 +00:00
|
|
|
echo "Building silver bullet"
|
2022-10-29 14:27:16 +00:00
|
|
|
deno task build
|
2022-09-05 14:33:56 +00:00
|
|
|
echo "Cleaning website build dir"
|
|
|
|
rm -rf website_build
|
2022-09-13 06:46:30 +00:00
|
|
|
mkdir -p website_build/fs/_plug
|
2022-09-05 14:33:56 +00:00
|
|
|
echo "Copying silverbullet runtime files"
|
2022-10-29 14:27:16 +00:00
|
|
|
cp -r dist_bundle/web/* website_build/
|
|
|
|
cp -r dist_bundle/_plug/* website_build/fs/_plug/
|
2022-09-05 14:33:56 +00:00
|
|
|
echo "Copying netlify config files"
|
|
|
|
cp website/{_redirects,_headers} website_build/
|
|
|
|
|
|
|
|
echo "Copying website markdown files"
|
2022-09-13 06:46:30 +00:00
|
|
|
cp -r website/* website_build/fs/
|
|
|
|
rm website_build/fs/{_redirects,_headers}
|
2022-09-05 14:33:56 +00:00
|
|
|
|
|
|
|
echo "Generating file listing"
|
2022-10-29 14:27:16 +00:00
|
|
|
deno run -A scripts/generate_fs_list.ts > website_build/index.json
|
2022-09-05 14:33:56 +00:00
|
|
|
|
|
|
|
echo > website_build/empty.md
|
|
|
|
|