From ae5ecbe808208e30d61fecdf0f017e3a4c0852ee Mon Sep 17 00:00:00 2001 From: "ELY M." Date: Tue, 12 Nov 2024 20:09:59 -0600 Subject: [PATCH 1/4] fix --- webpack.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webpack.config.js b/webpack.config.js index d570f9c..1125bc6 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,3 +1,7 @@ +const crypto = require("crypto"); +const crypto_orig_createHash = crypto.createHash; +crypto.createHash = algorithm => crypto_orig_createHash(algorithm == "md4" ? "sha256" : algorithm); + const child_process = require('child_process') const path = require('path') const CopyPlugin = require('copy-webpack-plugin') From ed73aa3ca68aea78ad6203fa36e819f14d581f39 Mon Sep 17 00:00:00 2001 From: "ELY M." Date: Tue, 12 Nov 2024 20:14:26 -0600 Subject: [PATCH 2/4] readme --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 7b457fc..3b128b8 100644 --- a/README.md +++ b/README.md @@ -34,3 +34,21 @@ Additionally, there's no obligation to do so, but if you'd like to support my wo - Some sort of hosted API - Dark mode - Toggle to use system-agnostic icons for those stuck on Windows 7 without emoji support + + +## How to build and run on your server. + +apt install npm +apt install vue +apt install rustup +apt install nodejs +npm install -g yarn + +npm install --force +npm run build + +Your working website will be in dist folder. +copy dist folder to a place on your web server. +you can rename dist to something memorable. + + From 0db8387171f046136e149e74d73a7e81d8520e02 Mon Sep 17 00:00:00 2001 From: ELY M <> Date: Tue, 12 Nov 2024 20:20:17 -0600 Subject: [PATCH 3/4] readme --- README.md | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 3b128b8..a8bf531 100644 --- a/README.md +++ b/README.md @@ -38,17 +38,19 @@ Additionally, there's no obligation to do so, but if you'd like to support my wo ## How to build and run on your server. -apt install npm -apt install vue -apt install rustup -apt install nodejs -npm install -g yarn - -npm install --force -npm run build - -Your working website will be in dist folder. -copy dist folder to a place on your web server. +apt install npm +apt install vue +apt install rustup +apt install nodejs +npm install -g yarn + +npm install --force +npm run build + +Your working website will be in dist folder. +copy dist folder to a place on your web server. you can rename dist to something memorable. + + From 46f8141f16fd45e8b0cff6e09199839ee4c6334b Mon Sep 17 00:00:00 2001 From: ELY M <> Date: Tue, 12 Nov 2024 20:45:10 -0600 Subject: [PATCH 4/4] readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a8bf531..ec02f4f 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ Additionally, there's no obligation to do so, but if you'd like to support my wo ## How to build and run on your server. +Those commands are for Linux-based computer. apt install npm apt install vue