-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to the OWN3D Pro Desktop Wiki! This guide is designed to provide detailed instructions and explanations for developers working on the OWN3D Pro Desktop application. Whether you're diving into frontend development, desktop-specific features, or handling releases, this wiki will help you navigate key processes like testing, debugging, and release management.
Important
This documentation is intended only for developers working on the OWN3D Pro Desktop project. If you're a customer or seeking general assistance, please refer to our official README file for user guides and instructions.
For testing the frontend locally, you can launch the application using the following command. It will start the frontend in localhost mode:
PS C:\Users\Ghost\AppData\Local\own3d_desktop> .\own3d-desktop.exe -- --localhost
This will allow you to debug and work with the pro-frontend in the desktop context.
To work on the desktop-specific aspects of the application, use the following command from your local repository. This will start the desktop app in localhost mode:
C:\Users\Ghost\git\own3d-desktop>yarn start -- -- --localhost
In OWN3D Pro Desktop there are two developer tools available, the Main Window and the Web View. Usually for frontend development you will want to request the webview developer tools. You can do this by running the following command:
--devtools
Get the main window developer tools with:
--devtools=main
Get all available developer tools with:
--devtools=all
Details on release management will be explained here soon.