Download & Install
Docker
docker run -d \
--name requesto \
-p 4000:4000 \
-v requesto-data:/app/data \
terrii/requesto:latestOpen http://localhost:4000. See the Docker Deployment page for compose files and configuration.
Desktop App
Download the latest release for your platform from GitHub:
Available formats:
- Windows:
.exeinstaller or portable.exe - macOS:
.dmg - Linux:
.AppImage,.deb,.rpm
See the Desktop App page for platform-specific setup instructions.
Unsigned Binaries
The desktop installers are not code-signed. Windows SmartScreen and macOS Gatekeeper will show warnings when you run them.
Code signing requires purchasing a certificate from a trusted Certificate Authority, which is a cost this project doesn't have the backing for. The binaries are built directly from the public source code, but without a signature your OS has no way to verify that.
If you'd rather not trust a pre-built binary:
- Review the source — the full codebase is on GitHub
- Run with Docker — no executable to trust, just
docker run(instructions) - Run in dev mode — clone the repo,
npm install,npm run dev - Build your own binary — follow the Building from Source guide to package the
.exeyourself from code you can audit
From Source
git clone https://github.com/t3rr11/Requesto.git
cd Requesto
npm install
npm run devThis starts the backend on port 4000 and the frontend dev server on port 5173. See Building from Source for more details.