https://github.com/owdproject/app-template
Template App for OWD Client
https://github.com/owdproject/app-template
owd-apps owd-client webdesktop
Last synced: 11 months ago
JSON representation
Template App for OWD Client
- Host: GitHub
- URL: https://github.com/owdproject/app-template
- Owner: owdproject
- License: mit
- Created: 2020-09-16T14:46:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-05-17T15:50:11.000Z (about 1 year ago)
- Last Synced: 2025-06-19T14:51:37.529Z (12 months ago)
- Topics: owd-apps, owd-client, webdesktop
- Language: TypeScript
- Homepage:
- Size: 52.7 KB
- Stars: 3
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
Template App
Quick start a new Open Web Desktop application.
## Overview
A template for your new Open Web Desktop application.
## Getting started
1. Use this template for a new repository or simply download it into your `/apps` directory:
```bash
cd /apps
wget -O - https://github.com/owdproject/app-template/archive/refs/heads/main.zip | unzip -d app-template -
```
2. Register the app in your desktop configuration file:
```typescript
// /desktop/owd.config.ts
export default defineDesktopConfig({
apps: ['owd-app-template'],
})
```
3. Reinstall dependencies in your workspace to enable internal linking:
```bash
pnpm install
```
## License
This application is released under the [MIT License](LICENSE).