Initial Version

This commit is contained in:
Ruslan845
2026-03-10 03:45:00 +09:00
commit 2c4fc7f933
128 changed files with 7617 additions and 0 deletions

1
server/data/cart.json Normal file
View File

@@ -0,0 +1 @@
{"products":[{"id":"0.41607315815753076","qty":1}],"totalPrice":12}

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 655 KiB

View File

@@ -0,0 +1,103 @@
%PDF-1.3
%ÿÿÿÿ
7 0 obj
<<
/Type /Page
/Parent 1 0 R
/MediaBox [0 0 612 792]
/Contents 5 0 R
/Resources 6 0 R
>>
endobj
6 0 obj
<<
/ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font <<
/F1 8 0 R
>>
>>
endobj
5 0 obj
<<
/Length 223
/Filter /FlateDecode
>>
stream
xœ½½j1 €w?…^ ®$ëç Ç
…vèVðV:”ëyË<79>÷_*§Í<C2A7>„Bo)Â?Èæû„F(6¯ ë1<C3AB>ÝåÛOÀ9»MÐŽéᙀZOo³TÛ`„Ù-N…ÙºU+¦ à;´—ôÔÒëøæšqP¯ùüù¿±·j•,v)š.MéÎ&¦ÎŒ"Fk/¸L™ýž¼Yu ž2F“»­qgTr5²-ÞÆ<C39E>ÊX>Ên+sÆx¸±šx ¶üêá½Ô\qºõ¨,@c¬<E28093>Ù:ô€h Öy¬¾}ÏQX®Ì_Ÿlžg
endstream
endobj
10 0 obj
(PDFKit)
endobj
11 0 obj
(PDFKit)
endobj
12 0 obj
(D:20200711141117Z)
endobj
9 0 obj
<<
/Producer 10 0 R
/Creator 11 0 R
/CreationDate 12 0 R
>>
endobj
8 0 obj
<<
/Type /Font
/BaseFont /Helvetica
/Subtype /Type1
/Encoding /WinAnsiEncoding
>>
endobj
4 0 obj
<<
>>
endobj
3 0 obj
<<
/Type /Catalog
/Pages 1 0 R
/Names 2 0 R
>>
endobj
1 0 obj
<<
/Type /Pages
/Count 1
/Kids [7 0 R]
>>
endobj
2 0 obj
<<
/Dests <<
/Names [
]
>>
>>
endobj
xref
0 13
0000000000 65535 f
0000000844 00000 n
0000000901 00000 n
0000000782 00000 n
0000000761 00000 n
0000000208 00000 n
0000000119 00000 n
0000000015 00000 n
0000000664 00000 n
0000000589 00000 n
0000000503 00000 n
0000000528 00000 n
0000000553 00000 n
trailer
<<
/Size 13
/Root 3 0 R
/Info 9 0 R
/ID [<d6869a3d336f873c077bfc9befe8a1ba> <d6869a3d336f873c077bfc9befe8a1ba>]
>>
startxref
948

View File

@@ -0,0 +1 @@
[{"id":"123245","title":"A Book","imageUrl":"https://www.publicdomainpictures.net/pictures/10000/velka/1-1210009435EGmE.jpg","description":"This is an awesome book!","price":"19"},{"id":"0.41607315815753076","title":"fasfd","imageUrl":"fdasfs","description":"fadsfads","price":"12"}]

View File

@@ -0,0 +1,11 @@
const fs = require("fs");
const deleteFile = (filePath) => {
fs.unlink(filePath, (err) => {
if (err) {
throw new Error("dsadhas");
}
});
};
exports.fileDelete = deleteFile;

3
server/data/util/path.js Normal file
View File

@@ -0,0 +1,3 @@
const path = require('path');
module.exports = path.dirname(process.mainModule.filename);