Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 677 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 677 Bytes

v8p.me

a basic file uploading service featuring client-side encryption and decryption under 1gb of memory usage

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