2022-11-20 14:25:16 +00:00
|
|
|
# Build the website files
|
|
|
|
# Should be run with "npm run build" - npm handles the pathing better (so no "#!/usr/bin/env" bash on top)
|
2022-10-30 09:03:40 +00:00
|
|
|
|
2023-03-30 10:03:18 +00:00
|
|
|
# build the index.html file
|
|
|
|
node ./scripts/buildIndex.js
|
|
|
|
|
2022-11-20 14:25:16 +00:00
|
|
|
# encrypt the example file
|
2023-03-30 10:03:18 +00:00
|
|
|
cd example
|
|
|
|
node ../cli/index.js example.html \
|
|
|
|
-p test \
|
2023-03-29 08:50:31 +00:00
|
|
|
--short \
|
2022-10-30 09:03:40 +00:00
|
|
|
--salt b93bbaf35459951c47721d1f3eaeb5b9 \
|
2023-03-30 10:03:18 +00:00
|
|
|
--config false \
|
|
|
|
--template-instructions "Enter \"test\" to unlock the page"
|
2022-11-20 14:25:16 +00:00
|
|
|
|