https://github.com/vaaski/mediabox
https://github.com/vaaski/mediabox
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vaaski/mediabox
- Owner: vaaski
- Created: 2023-03-15T20:08:33.000Z (over 3 years ago)
- Default Branch: go
- Last Pushed: 2024-04-28T17:45:07.000Z (about 2 years ago)
- Last Synced: 2026-02-10T23:48:11.668Z (5 months ago)
- Language: NSIS
- Homepage:
- Size: 1.08 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# mediabox
### SYNOPSIS
todo
### SETUP
0. [Install Go](https://go.dev/doc/install)
1. Clone with submodules
```bash
git clone --recurse-submodules https://github.com/vaaski/mediabox
```
2. Install [Taskfile](https://taskfile.dev)
```bash
go install github.com/go-task/task/v3/cmd/task@latest
```
3. Install [wails3](https://v3alpha.wails.io)
```bash
cd wails/v3/cmd/wails3
go install
```
4. Install Bun
```bash
# Linux & MacOS
curl -fsSL https://bun.sh/install | bash
```
```ps1
# Windows
powershell -c "irm bun.sh/install.ps1 | iex"
```
5. Run the project
```bash
# hot reload debugging mode
task dev
```
```bash
# build for production
task build:prod
```