commit 07f29324773dbe85518075761243b35c588b2d0b Author: moonstar-x Date: Fri Jun 11 21:28:13 2021 -0500 Initial commit. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3a00be3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules/ +data/credentials.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..132587e --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Kiss Asian Downloader + +Download content from Kiss Asian through JDownloader. diff --git a/data/credentials.json.example b/data/credentials.json.example new file mode 100644 index 0000000..ba15b24 --- /dev/null +++ b/data/credentials.json.example @@ -0,0 +1,10 @@ +{ + "kissasian": { + "username": "USERNAME", + "password": "PASSWORD" + }, + "jdownloader": { + "email": "EMAIL", + "password": "PASSWORD" + } +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..9845aef --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "name": "kissasian-downloader", + "version": "1.0.0", + "description": "", + "main": "./src/index.js", + "scripts": { + "start": "node ." + }, + "repository": { + "type": "git", + "url": "http://192.168.100.4:3000/moonstar-x/kissasian-downloader" + }, + "keywords": [], + "author": "moonstar-x", + "license": "ISC" +}