mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-22 22:17:55 +00:00
* docs: jira * docs: formatting + Client Credentials grant type * docs: connection string pgsql * docs: parameterized queries mysql * docs: parameterized queries in PostgreSQL * docs: update mysql example * docs: TJDB sql editor * docs: add metadata to REST API * docs: add, update postgresql media * docs: add metadata to graphql * docs: update parameterized queries * docs: add parameterized queries for mssql * docs: add SSL Cert to mysql * docs: TJDB SQL restricted commands * docs: update JIRA token location * docs: update delete issue example * docs: update find user by query example * docs: remove session id from get assignable users * docs: use correct image for get issues for board * docs: update create issue example * docs: update delete issue media * docs: update assignable users media * docs: update examples * docs: update key desc * docs: v2.68.0-Beta
56 lines
No EOL
1.9 KiB
Markdown
56 lines
No EOL
1.9 KiB
Markdown
---
|
|
id: share
|
|
title: Share
|
|
---
|
|
|
|
ToolJet apps offer two sharing options: private sharing with workspace users or public sharing via a generated link. To obtain the shareable URL, click the **Share** icon on the top bar of the App Builder.
|
|
|
|
<div style={{textAlign: 'center'}}>
|
|
|
|
<img className="screenshot-full" src="/img/v2-beta/app-builder/share/share-app-v2.gif" alt="Share modal" />
|
|
|
|
</div>
|
|
|
|
### Making the app public
|
|
|
|
To share the app publicly and make it accessible to anyone on the internet without requiring a ToolJet login, toggle the **Make application public** switch in the Share modal.
|
|
|
|
:::info
|
|
Only released apps can be accessed using the Shareable app link.
|
|
:::
|
|
|
|
<div style={{textAlign: 'left'}}>
|
|
|
|
<img className="screenshot-full" src="/img/v2-beta/app-builder/share/make-application-public-v2.png" alt="Make Application Public" width='700'/>
|
|
|
|
</div>
|
|
|
|
### Customizing the app URL
|
|
|
|
By default, ToolJet will generate a unique URL for your application. However, you also have the option to edit the slug of the URL to make it more customized and user-friendly.
|
|
|
|
<div style={{textAlign: 'left'}}>
|
|
|
|
<img className="screenshot-full" src="/img/v2-beta/app-builder/share/edit-slug-v2.png" alt="Edit Slug/URL" width='700'/>
|
|
|
|
</div>
|
|
|
|
### Embedding ToolJet Apps
|
|
|
|
ToolJet apps can be directly shared with end users and embedded into web apps using `iframes`. If you want to make your application public, you can use the Share modal to obtain the embeddable link.
|
|
|
|
:::info
|
|
For embedding private ToolJet apps, you'll need to set an environment variable in the `.env` file.
|
|
|
|
| Variable | Description |
|
|
|:-------------- |:------------------------------------ |
|
|
| ENABLE_PRIVATE_APP_EMBED | `true` or `false` |
|
|
|
|
You can learn more [here](/docs/setup/env-vars#enabling-embedding-of-private-apps).
|
|
:::
|
|
|
|
<div style={{textAlign: 'center'}}>
|
|
|
|
<img className="screenshot-full" src="/img/v2-beta/app-builder/share/embeddtj.gif" alt="Share modal" />
|
|
|
|
</div> |