-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add readme for Mac and Win apps (#2757)
* Add readme for Mac and Win apps * chore(Makefile): improve xcode error feedback Co-authored-by: Paul Esch-Laurent <[email protected]>
- Loading branch information
Showing
4 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Focalboard Mac Personal Desktop | ||
|
||
This folder contains the code for the Mac Personal Desktop. It packages a lightweight Swift Mac App with the Mac build of the server, and the webapp. The server is run in a single-user mode. | ||
|
||
## Debugging in Xcode | ||
|
||
Open `Focalboard.xcworkspace` in Xcode to debug it. | ||
|
||
To debug the client webapp: | ||
1. Run the Focalboard desktop app from Xcode | ||
2. Open Safari | ||
3. Enable Safari's [developer tools] | ||
4. Select the Focalboard app from the develop menu, under your computer's name | ||
|
||
### Testing the single-user server | ||
|
||
You can also run the server in single-user mode and connect to it via a browser: | ||
|
||
1. Run `FOCALBOARD_SINGLE_USER_TOKEN=testtest make watch-single-user` | ||
* This runs the server with the `-single-user` flag | ||
* Alternatively, select `Go: Launch Single-user Server` from VSCode's run and debug options | ||
2. Open a browser to `http://localhost:8000` | ||
3. Open the browser developer tools to Application \ Local Storage \ localhost:8000 | ||
4. Set `focalboardSessionId` to `testtest` | ||
5. Navigate to `http://localhost:8000` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Focalboard Windows Personal Desktop | ||
|
||
This folder contains the code for the Windows Personal Desktop. It packages a lightweight C# Windows App with the Windows build of the server, and the webapp. The server is run in a single-user mode. | ||
|
||
## Debugging in Visual Studio | ||
|
||
Open `Focalboard.sln` in Visual Studio to debug it. | ||
|
||
### Testing the single-user server | ||
|
||
You can also run the server in single-user mode and connect to it via a browser: | ||
|
||
1. Run `FOCALBOARD_SINGLE_USER_TOKEN=testtest make watch-single-user` | ||
* This runs the server with the `-single-user` flag | ||
* Alternatively, select `Go: Launch Single-user Server` from VSCode's run and debug options | ||
2. Open a browser to `http://localhost:8000` | ||
3. Open the browser developer tools to Application \ Local Storage \ localhost:8000 | ||
4. Set `focalboardSessionId` to `testtest` | ||
5. Navigate to `http://localhost:8000` |