Skip to content

Commit

Permalink
update FAQs
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy Razon committed Jan 22, 2024
1 parent 2131c61 commit 25ab9b4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 38 deletions.
22 changes: 21 additions & 1 deletion site/docs/FAQs/preevy.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sidebar_label: Preevy CLI
sidebar_position: 15
---

## Common questions about using the Preevy CLI
## General questions about using the Preevy CLI

<details>
<summary>Is the Preevy CLI free to use?</summary>
Expand Down Expand Up @@ -43,3 +43,23 @@ sidebar_position: 15

Join the <a href="https://community.livecycle.io" target="_blank">Livecycle Community</a> on Slack to get support for Preevy CLI.
</details>

## Technical questions

<details>
<summary>Can I expose only specific ports for a service?</summary>

By default, Preevy exposes all the public TCP ports of a service defined in the Compose file.

You can explicitly specify the ports to be exposed by defining a `preevy.expose` label on the service with the comma-separated list of port numbers to be exposed.

Labels can defined in the Compose file (`compose.yaml` or `docker-compose.yaml`) as follows:
```yaml
services:
my-service:
build: ...
labels:
preevy.expose: 8000,8001
```
</details>
38 changes: 1 addition & 37 deletions site/docs/intro/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,43 +10,7 @@ title: Getting started

## FAQ

<details>
<summary>Is the Preevy CLI free to use?</summary>

Yes, the Preevy CLI is free to use.
</details>

<details>
<summary> Is the Preevy CLI open source?</summary>

Yes, the Preevy CLI is open source. You can find the source code on [Github](https://github.com/livecycle-io/preevy).
</details>

<details>
<summary>Which frameworks and languages does the Preevy CLI support?</summary>

The Preevy CLI is language and framework agnostic. It works with anything that runs in a Docker container.
</details>

<details>
<summary>What security features does the Preevy CLI offer?</summary>

The Preevy CLI uses a secure [SSH tunnel](https://livecycle.io/blogs/preevy-proxy-service-2/) to expose your local development environment using Livecycle's tunnel server, which is only accessible using HTTPS.

You can enable private URLs to restrict access to your environment.
</details>

<details>
<summary>Where do I report bugs?</summary>

You can report bugs on [Github](https://github.com/livecycle-io/preevy/issues). Or you can join the [Livecycle Community](https://community.livecycle.io/) on Slack and report bugs there.
</details>

<details>
<summary>How do I get support for Preevy CLI?</summary>

Join the <a href="https://community.livecycle.io" target="_blank">Livecycle Community</a> on Slack to get support for Preevy CLI.
</details>
See the [CLI FAQ section](/FAQs/preevy).

## What's next?

Expand Down

0 comments on commit 25ab9b4

Please sign in to comment.