A single binary webview executable REST client for reqlang.
- Download
- Unzip the
reqlang-webin a directory on thePATH cdin to your project's root directory- Create a
.envfile in the project's root directory and define an encryption key. - Run
reqlang-webfrom a terminal in a project directory containing request files
An encryption key must be defined before starting the app. This will be used to encrypt the app's database. Requests that references secrets will have secret values in the run history. Encryption helps ensure those values stay safe.
Create a .env file at the root of your project directory, where reqlang-web will be ran, then define the RQL_DB_KEY environment variable.
RQL_DB_KEY=strongPassword1!Be sure to also add .env to your source control ignore list (e.g. .gitignore). You don't want to commit this file.
The RQL_DB_REKEY environment variable is used when you'd like to change the database's encryption key. The RQL_DB_KEY environment variable is still required.
RQL_DB_KEY=strongPassword1!
RQL_DB_REKEY=strongPassword2@See DEVELOPMENT.md for details.



