https://github.com/phenax/ulmus-desktop
A framework for building cross-platform desktop applications entirely in Elm
https://github.com/phenax/ulmus-desktop
Last synced: 3 months ago
JSON representation
A framework for building cross-platform desktop applications entirely in Elm
- Host: GitHub
- URL: https://github.com/phenax/ulmus-desktop
- Owner: phenax
- License: mit
- Created: 2022-06-19T12:39:33.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-20T10:42:04.000Z (almost 3 years ago)
- Last Synced: 2025-01-16T19:52:15.457Z (5 months ago)
- Language: TypeScript
- Size: 234 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ulmus Desktop [WIP]
A framework for building cross-platform desktop applications entirely in Elm! It uses electron under the hood.
## Getting started with the template
You can clone/fork the template to get started quickly
```sh
git clone https://github.com/phenax/ulmus-desktop-example.git my-ulmus-app
cd my-ulmus-app
yarnyarn dev # To start application in dev mode
```## CLI
* Run your application in dev mode
```sh
ulmus run
```* Run an optimized build of the application
```sh
ulmus run --disable-dev
```* Bundle your app for the host platform
```sh
ulmus bundle
```* Bundle your app for linux, windows and macos platforms
```sh
ulmus bundle --platform linux win32 darwin
```