Skip to content

postguard-website

GitHub · SvelteKit · Web Application

The PostGuard web frontend for encrypting and sending files. Users pick files, choose recipients by email address, authenticate with Yivi, and the files are encrypted and uploaded to Cryptify for delivery. Built with SvelteKit using the static adapter.

Integration

The website uses @e4a/pg-js with two Vite plugins for WASM support (vite-plugin-wasm and vite-plugin-top-level-await). It also uses @e4a/pg-components for shared UI elements like file pickers and Yivi authentication dialogs.

The website contains two submodules: Cryptify (the file sharing backend, embedded in an iframe) and the Thunderbird addon (the .xpi file can be downloaded from the website). To update the submodules:

bash
git submodule update --init --recursive

For a step-by-step example of building a web application with PostGuard, see the pg-sveltekit example, which follows the same patterns as this website.

Development

Docker Compose sets up everything: the PostGuard website, Cryptify file share server, IRMA server, PKG server, and a Mailcrab mail testing UI.

bash
# Initialize submodules (Cryptify, etc.)
git submodule update --init --recursive

# Start all services with hot reload
docker-compose up

# Website:  http://localhost:8080
# Mail UI:  http://localhost:1080

Your code changes reload automatically since the source is mounted as a volume.

Production Environment

bash
docker-compose -f docker-compose.prod.yml up
# Access at http://localhost

Stopping Services

bash
# Development
docker-compose down

# Production
docker-compose -f docker-compose.prod.yml down

Building

Building is done automatically through GitHub Actions. You can also build manually:

bash
docker-compose build      # Build via Docker
npm run build             # Build only the PostGuard website

Manual (without Docker)

bash
npm install
npm run dev       # dev server
npm run build     # build SPA
npm run preview   # preview production build

Testing

bash
npm run check     # Svelte type checking
npm run lint      # Prettier + ESLint
npm run format    # auto-format
npm run test      # Playwright tests

Mobile Debugging

To test on a physical Android device, connect the phone with USB debugging enabled and make sure Yivi is in developer mode:

bash
adb reverse tcp:8088 tcp:8088   # Yivi / IRMA server (for scanning QR codes)
adb reverse tcp:8080 tcp:8080   # PostGuard website

Environment Variables

VariableDefaultDescription
VITE_FILEHOST_URLhttp://localhost:8000Cryptify file hosting service URL
VITE_PKG_URLhttp://localhost:8087PKG service URL
VITE_MAX_UPLOAD_SIZEMaximum file upload size in bytes
VITE_UPLOAD_CHUNK_SIZEUpload chunk size in bytes
VITE_FILEREAD_CHUNK_SIZEFile read chunk size in bytes

Releasing

This repository uses Release-please for automated versioning. Merging a release PR triggers a multi-architecture Docker image build pushed to GHCR.

CI/CD

WorkflowTriggerWhat it does
ci.ymlPush/PRSvelte type checks, release-please, multi-arch Docker build
pr-title.ymlPRValidates PR title format