An unbloated media host specialized in great looking embeds for services like Discord
Find a file
2022-12-09 22:02:32 +00:00
.github/workflows fix ci 2022-12-04 00:18:54 +00:00
app rework delete function 2022-12-09 22:02:32 +00:00
cypress fix sharex 2022-12-07 16:30:39 +00:00
docker fix ci 2022-12-04 00:18:54 +00:00
.gitattributes add gitattributes 2022-11-21 04:01:50 -05:00
.gitignore typescripting 2022-12-03 21:03:34 +00:00
cypress.config.js fix sharex 2022-12-07 16:30:39 +00:00
LICENSE Line endings fix 2022-11-20 18:33:25 -05:00
package-lock.json typescripting2 2022-12-03 23:48:16 +00:00
package.json preliminary work for guest account support 2022-12-05 17:50:38 +00:00
README.md 1.7.2 release 2022-12-04 03:27:37 +00:00
readmegif.gif update gif 2022-11-15 18:17:40 -05:00
tsconfig.json typescripting2 2022-12-03 23:48:16 +00:00

Embedder

A media host specialized in good looking embeds for services like Discord. No file size limits. No compression.

Upcoming Features:

  • Guest user accounts
  • MariaDB/SQL support (uses sqlite for now)

Potential:

  • IPFS

Run

Source:

$ export EBPASS=changeme
$ export EBPORT=3000
$ export EBAPI_KEY=changeme #ShareX support

$ npm install
$ npm start

Default username is admin with the password being whatever EBPASS is

ShareX support is enabled at "/upload", requires auth with key, expire key is in days JSON

{
    "Version": "14.1.0",
    "Name": "embedder",
    "DestinationType": "ImageUploader, FileUploader",
    "RequestMethod": "POST",
    "RequestURL": "http://localhost:3000/sharex",
    "Headers": {
      "key": "changeme"
    },
    "Body": "MultipartFormData",
    "Arguments": {
      "fileupload": null,
      "expire": null
    },
    "FileFormName": "fileupload",
    "URL": null,
    "ThumbnailURL": null,
    "DeletionURL": null,
    "ErrorMessage": null
}

Docker Config

docker run -d -p "3000:3000" -e EBPORT=3000 -e EBPASS=changeme -e EBAPI_KEY=changeme ghcr.io/waveringana/embedder:1.7.2

Docker Compose

version: '3.3'
services:
    embedder:
        ports:
            - '3000:3000'
        environment:
            - EBPORT=3000
            - EBPASS=changeme
            - EBAPI_KEY=changeme
        volumes:
            - ./db:/var/db
            - ./uploads:/uploads
        image: ghcr.io/waveringana/embedder:1.7.2

License

The Unlicense