Skip to content

Commit

Permalink
Remove remoteAddress
Browse files Browse the repository at this point in the history
  • Loading branch information
hoontee committed Jan 26, 2024
1 parent 6cec018 commit 55c573e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
10 changes: 2 additions & 8 deletions docs/lync/getting-started/usage/lync-executable.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,12 @@ The Lync executable can start a live sync session, build to file, and fetch down
::: info Command Line Arguments
- `LYNC HELP` - Displays the list of available arguments.
- `LYNC CONFIG` - Opens the config file.
- `LYNC SERVE project.json? REMOTE?` - Syncs the project.
- `LYNC OPEN project.json? REMOTE?` - Builds, syncs, and opens the project in Roblox Studio.
- `LYNC SERVE project.json?` - Syncs the project.
- `LYNC OPEN project.json?` - Builds, syncs, and opens the project in Roblox Studio.
- `LYNC BUILD project.json?` - Builds the project to file.
- `LYNC FETCH project.json?` - Downloads the list of sources in the project file.

`project.json?` - The project file to read from and serve.

`REMOTE?` - Connect to the project's `remoteAddress` instead of the localhost.
:::

::: danger UNAVAILABLE
`REMOTE` is unimplemented.
:::

## Live Sync
Expand Down
6 changes: 0 additions & 6 deletions docs/lync/project-format/project/project-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ Lync projects define the Instance tree inside Roblox, as well as configuring the
- The path to save the finished build file when using `OPEN` and `BUILD` modes.
- `port`: number
- The network port to serve the project on when using `SERVE` and `OPEN` modes.
- `remoteAddress`: string *(Optional)*
- The IP address or hostname to connect to instead of the localhost.
- `servePlaceIds`: {number} *(Optional)*
- An array of place IDs to serve. Lync will refuse to connect if the open place ID isn't found in the array.
- `globIgnorePaths`: {string} *(Optional)*
Expand All @@ -35,9 +33,6 @@ Lync projects define the Instance tree inside Roblox, as well as configuring the
- `tree`: Object
- The root Instance.
:::
::: danger UNAVAILABLE
`remoteAddress` is unimplemented.
:::

### Example

Expand All @@ -47,7 +42,6 @@ Lync projects define the Instance tree inside Roblox, as well as configuring the
"base": "Base.rbxl",
"build": "Build.rbxl",
"port": 34873,
"remoteAddress": "localhost",
"servePlaceIds": [ 1818 ],
"globIgnorePaths": [ "ignoredDirectory/**" ],
"sourcemapEnabled": {
Expand Down

0 comments on commit 55c573e

Please sign in to comment.