From 5443b69f73aa570a980e523221ccff7c477143d3 Mon Sep 17 00:00:00 2001 From: LiarOnce Date: Wed, 24 Apr 2024 17:36:33 +0800 Subject: [PATCH] Add index.html --- index.html | 15 +++++++++++++++ index.js | 2 ++ 2 files changed, 17 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..6685c05 --- /dev/null +++ b/index.html @@ -0,0 +1,15 @@ + + + + + + + openGiraffes Store DB + + +

This is openGiraffes Store Database website, if you want to use database by self apps, you can use this URL:

+

+        https://storedb.opengiraffes.top/data.json
+    
+ + \ No newline at end of file diff --git a/index.js b/index.js index fe3fc23..9bf6bb4 100644 --- a/index.js +++ b/index.js @@ -385,6 +385,8 @@ async function main() { await fs.copyFile(join(__dirname, 'schema.json'), join(PUBLIC, 'schema.json')) + await fs.copyFile(join(__dirname, 'index.html'), join(PUBLIC, 'index.html')) + console.log("writing feed") await fs.writeFile(join(PUBLIC, 'feed.xml'), await generate_feed(apps, categories))