An open API service indexing awesome lists of open source software.

https://github.com/pomerium/desktop-client

Cross Platform Desktop Application for establishing TCP connections through Pomerium
https://github.com/pomerium/desktop-client

pomerium

Last synced: 5 months ago
JSON representation

Cross Platform Desktop Application for establishing TCP connections through Pomerium

Awesome Lists containing this project

README

          

# Starting Development

## Get all the dependencies

```bash
yarn
```

## Development checkout of pomerium-cli

### Set up repo clone and symlink

```bash
yarn dev-setup
```

This will internally check out the default branch of `pomerium/cli`

### Change branch/tag/commit for cli checkout

```bash
( cd cli && git checkout [commit-ish] )
```

### Pull branch updates (if any) and rebuild cli

To fetch branch updates and rebuild the cli binary

```bash
yarn build-cli
```

## Run a dev build

Start the app in the `dev` environment:

```bash
yarn start
```

# Packaging for Production

To package apps for the local platform:

```bash
yarn package
```