Skip to content

Commit

Permalink
Veso
Browse files Browse the repository at this point in the history
  • Loading branch information
dannymichel committed Nov 4, 2022
1 parent 67661a1 commit f334a9b
Show file tree
Hide file tree
Showing 9 changed files with 6,223 additions and 379 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
triage:
name: 'Merge conflict labeling'
runs-on: ubuntu-latest
if: ${{ github.repository == 'vesoapp/veso-web' }}
if: ${{ github.repository == 'vesoapp/veso-desktop' }}
steps:
- uses: eps1lon/actions-label-merge-conflict@fd1f295ee7443d13745804bc49fe158e240f6c6e # tag=v2.1.0
with:
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
dist
web
node_modules
release-builds

# config
config.json
Expand All @@ -18,4 +19,6 @@ yarn-error.log
# build artifacts
fedora/jellyfin-web-*.src.rpm
fedora/jellyfin-web-*.tar.gz
.DS_Store

# mac
.DS_Store
29 changes: 11 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
<h1 align="center">Veso Web</h1>
<h3 align="center">Part of the <a href="https://veso.app">Veso Project</a></h3>

---

<p align="center">
<img alt="Logo Banner" src="https://user-images.githubusercontent.com/1161544/173489550-b48543f5-9aa4-43b8-a604-c1ec4ef248ff.svg?sanitize=true"/>
</p>
## Build Process

### Dependencies
Expand All @@ -18,8 +10,8 @@
1. Clone or download this repository.

```sh
git clone https://github.com/vesoapp/veso-web.git
cd veso-web
git clone https://github.com/vesoapp/veso-desktop.git
cd veso-desktop
```

2. Install build dependencies in the project directory.
Expand All @@ -28,15 +20,16 @@
npm install
```

3. Run the web client with webpack for local development.
3. Run the client.

```sh
npm start
npm run package-mac
```

4. Build the client with sourcemaps available.

```sh
npm run build:development
or
```sh
npm run package-linux
```
or
```sh
npm run package-win
```
Join us on discord https://discord.gg/Ce4PmFcX7Y
16 changes: 16 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const {BrowserWindow, app} = require('electron');
require('v8-compile-cache');

app.on('ready', () => {
const win = new BrowserWindow({
frame: false,
width: 1280,
height: 720,
title: 'Veso'
});
win.loadURL(`file://${__dirname}/dist/index.html`);
});

app.on('window-all-closed', () => {
app.quit();
});

0 comments on commit f334a9b

Please sign in to comment.