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
- Host: GitHub
- URL: https://github.com/pomerium/desktop-client
- Owner: pomerium
- License: apache-2.0
- Created: 2021-01-04T19:39:09.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-17T20:53:29.000Z (12 months ago)
- Last Synced: 2024-10-20T07:35:54.676Z (12 months ago)
- Topics: pomerium
- Language: TypeScript
- Homepage:
- Size: 64.6 MB
- Stars: 13
- Watchers: 6
- Forks: 3
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
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
```