Skip to content

Commit

Permalink
Web UI (#4)
Browse files Browse the repository at this point in the history
* tidy up

* webserver: move to module

* basic web ui

* webserver: improve web ui

* webserver: React Web UI

* ci: add Dockerfile

* doc: add web UI

* Bump version

* feat(web): configuration page

* web: lazy load config page
  • Loading branch information
hizkifw authored Aug 2, 2022
1 parent 54eed72 commit 072b022
Show file tree
Hide file tree
Showing 34 changed files with 2,271 additions and 380 deletions.
5 changes: 5 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
target
temp
videos
web/node_modules
Dockerfile
Binary file added .github/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: ci

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: |
ghcr.io/holoarchivists/hoshinova
tags: |
type=ref,event=branch
type=ref,event=pr
type=sha
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Login to GHCR
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
Loading

0 comments on commit 072b022

Please sign in to comment.