unknow-dmb/README.md
2024-10-01 20:50:58 +07:00

44 lines
773 B
Markdown

# DMB Project Launcher
Based on Helios Launcher
## Development
This section details the setup of a basic developmentment environment.
### Getting Started
**System Requirements**
- nodejs v20
**Clone and Install Dependencies**
```console
> git clone https://github.com/dscalzi/HeliosLauncher.git
> cd HeliosLauncher
> npm install
```
**Launch Application**
```console
> npm start
```
**Build Installers**
To build for your current platform.
```console
> npm run dist
```
Build for a specific platform.
| Platform | Command |
| ----------- | -------------------- |
| Windows x64 | `npm run dist:win` |
| macOS | `npm run dist:mac` |
| Linux x64 | `npm run dist:linux` |
Builds for macOS may not work on Windows/Linux and vice-versa.