Skip to content

Commit 60ea044

Browse files
Merge pull request #68 from onassisryu/feat/update-self-hosting
Update self-hosting page for desktop app connection
2 parents de4465b + 19c4596 commit 60ea044

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/content/docs/getting-started/self-host.mdx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,24 @@ We offer the option to self-host the Huly platform on your own server. All of th
1515

1616
Everything you see in the cloud version can potentially be self-hosted; however, we may not "prepackage" some services for various reasons. Some integrations (like GitHub) may require you to install a separate app in GitHub or work with Google to enable an API, and we do not have extensive documentation to describe every case. Also, some parts of cloud version rely on proprietary Cloudflare services, which we intentionally do not include into self-hosting packages to avoid any vendor lock-ins.
1717

18+
## Connecting the Desktop App to your self-hosted server
19+
20+
You can connect the Huly Desktop App to your self-hosted server by launching it with the `--server` option pointing to your server URL.
21+
22+
**Windows:**
23+
1. Right-click the Huly shortcut → Properties
24+
2. In the "Target" field, add `--server https://your-huly-server.com` after the exe path
25+
3. Example: `"C:\Program Files\Huly\Huly.exe" --server https://your-huly-server.com`
26+
27+
**macOS:**
28+
```bash
29+
# Using the app name
30+
open -a "Huly" --args --server https://your-huly-server.com
31+
32+
# Or using the executable path directly
33+
/Applications/Huly.app/Contents/MacOS/Huly --server https://your-huly-server.com
34+
```
35+
1836
## Migrating data between self-hosted and cloud
1937

2038
We do not have a way for users to migrate data from a self-hosted Huly instance to our cloud version through the GUI, but there is still a way to manually export/import your self-hosted data to huly.io. Feel free to reach us out when you need to do this and we will provide you guidance and help.

0 commit comments

Comments
 (0)