An open API service indexing awesome lists of open source software.

https://github.com/vaaski/mediabox


https://github.com/vaaski/mediabox

Last synced: 4 months ago
JSON representation

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
```