diff --git a/README.md b/README.md index 4c5a4aa..e960f4e 100755 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# anssxustawai -A Not Shitty ShareX Upload Server That Actually Works As Intended (Pronounced "an-zoo-sta-why") +# ass +A not-shitty ShareX upload server that actually works as intended. This project is still very young, so don't expect *everything* to be perfect yet. @@ -29,10 +29,10 @@ This project is still very young, so don't expect *everything* to be perfect yet ## Installation -The installation may look daunting but it's really pretty straightforward. Just follow it word-for-word & you'll be fine. If you are not fine, then by all means [open an Issue](https://github.com/tycrek/anssxustawai/issues/new) & I'll try my best to help. +The installation may look daunting but it's really pretty straightforward. Just follow it word-for-word & you'll be fine. If you are not fine, then by all means [open an Issue](https://github.com/tycrek/ass/issues/new) & I'll try my best to help. 1. First of all you must have Node.js 14 or later installed. It might work with Node.js 12 but just use 14. -2. Clone this repo using `git clone https://github.com/tycrek/anssxustawai.git && cd anssxustawai/` +2. Clone this repo using `git clone https://github.com/tycrek/ass.git && cd ass/` 3. Run `npm i` to install the required dependencies 4. Run `npm run setup` to start the easy configuration 5. Run `npm start` to start the server. The first-time run will: diff --git a/package-lock.json b/package-lock.json index dd1b59d..39f0259 100755 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "anssxustawai", + "name": "ass", "version": "1.0.0", "lockfileVersion": 2, "requires": true, @@ -1759,4 +1759,4 @@ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" } } -} +} \ No newline at end of file diff --git a/package.json b/package.json index 0ab5cc0..dc9ad27 100755 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "anssxustawai", + "name": "ass", "version": "1.0.0", "description": "A Not Shitty ShareX Upload Server That Actually Works As Intended", "main": "ass.js", @@ -10,7 +10,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/tycrek/anssxustawai.git" + "url": "git+https://github.com/tycrek/ass.git" }, "keywords": [ "sharex", @@ -19,9 +19,9 @@ "author": "tycrek", "license": "ISC", "bugs": { - "url": "https://github.com/tycrek/anssxustawai/issues" + "url": "https://github.com/tycrek/ass/issues" }, - "homepage": "https://github.com/tycrek/anssxustawai#readme", + "homepage": "https://github.com/tycrek/ass#readme", "dependencies": { "crypto-random-string": "3.3.1", "express": "^4.17.1", @@ -31,4 +31,4 @@ "prompt": "^1.1.0", "uuid": "^8.3.2" } -} +} \ No newline at end of file diff --git a/sample_config.sxcu b/sample_config.sxcu index 0418650..93052f1 100755 --- a/sample_config.sxcu +++ b/sample_config.sxcu @@ -1,6 +1,6 @@ { "Version": "13.4.0", - "Name": "anssxustawai", + "Name": "ass", "DestinationType": "ImageUploader, TextUploader, FileUploader", "RequestMethod": "POST", "RequestURL": "https://your.domain.name.here/", diff --git a/setup.js b/setup.js index 7bb7c95..61639c4 100755 --- a/setup.js +++ b/setup.js @@ -91,7 +91,7 @@ const confirmSchema = { }; function setup() { - log('<<< anssxustawai setup >>>\n'); + log('<<< ass setup >>>\n'); let results; prompt.get(setupSchema) .then((r) => results = r)