a basic file uploading service featuring client-side encryption and decryption under 1gb of memory usage
while i'm working on a docker implementation, here is a (probably not production-safe) example.
git clone https://github.com/vaporii/v8p.me
cd v8p.me
mv .env.example .env
npm i
npm run build
node -r dotenv/config build
here is the previously mentioned docker implementation:
git clone https://github.com/vaporii/v8p.me
cd v8p.me
mv .env.example .env
docker build -t v8p.me .
docker run --name v8p.me -p 3000:3000 -d v8p.me
or, if you use docker compose:
# ...
docker build -t v8p.me .
docker compose up -d