https://github.com/bridgeconn/theia_obs_editor
This is a theia plugin, it can be used to edit Open Bible Stories
https://github.com/bridgeconn/theia_obs_editor
Last synced: 12 months ago
JSON representation
This is a theia plugin, it can be used to edit Open Bible Stories
- Host: GitHub
- URL: https://github.com/bridgeconn/theia_obs_editor
- Owner: Bridgeconn
- License: mit
- Created: 2025-03-07T07:04:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-07T07:18:56.000Z (over 1 year ago)
- Last Synced: 2025-03-07T08:25:47.104Z (over 1 year ago)
- Language: TypeScript
- Size: 235 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# obs-editor
The example of how to build the Theia-based applications with the obs-editor.
## Getting started
Please install all necessary [prerequisites](https://github.com/eclipse-theia/theia/blob/master/doc/Developing.md#prerequisites).
## Running the browser example
yarn build:browser
yarn start:browser
*or:*
yarn build:browser
cd browser-app
yarn start
*or:* launch `Start Browser Backend` configuration from VS code.
Open http://localhost:3000 in the browser.
## Running the Electron example
yarn build:electron
yarn start:electron
*or:*
yarn build:electron
cd electron-app
yarn start
*or:* launch `Start Electron Backend` configuration from VS code.
## Running the tests
yarn test
*or* run the tests of a specific package with
cd obs-editor
yarn test
## Developing with the browser example
Start watching all packages, including `browser-app`, of your application with
yarn watch:browser
*or* watch only specific packages with
cd obs-editor
yarn watch
and the browser example.
cd browser-app
yarn watch
Run the example as [described above](#Running-the-browser-example)
## Developing with the Electron example
Start watching all packages, including `electron-app`, of your application with
yarn watch:electron
*or* watch only specific packages with
cd obs-editor
yarn watch
and the Electron example.
cd electron-app
yarn watch
Run the example as [described above](#Running-the-Electron-example)
## Publishing obs-editor
Create a npm user and login to the npm registry, [more on npm publishing](https://docs.npmjs.com/getting-started/publishing-npm-packages).
npm login
Publish packages with lerna to update versions properly across local packages, [more on publishing with lerna](https://github.com/lerna/lerna#publish).
npx lerna publish