Skip to content

Commit 7ffd063

Browse files
Merge pull request #24 from SoftwareEngineeringOne/refactor/10-1-harmonization
refactor(10/1): harmonization
2 parents c4e890d + b73d7ac commit 7ffd063

File tree

216 files changed

+15857
-2634
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+15857
-2634
lines changed

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ use flake
66

77
export DATABASE_URL=sqlite://episko.db
88
export RUSTUP_TOOLCHAIN=stable
9+
export PATH="$PATH:/home/simon/2_Uni/se/episko/target/debug"
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Build Gui Application
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- alpha
8+
- beta
9+
- next
10+
pull_request:
11+
workflow_dispatch:
12+
13+
concurrency:
14+
group: build-${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
build-tauri:
19+
permissions:
20+
contents: write
21+
strategy:
22+
fail-fast: true
23+
24+
runs-on: 'ubuntu-24.04'
25+
steps:
26+
- uses: actions/checkout@v4
27+
28+
- name: Setup Bun
29+
uses: oven-sh/setup-bun@v2
30+
with:
31+
bun-version: latest
32+
- run: bun i
33+
34+
- name: install Rust stable
35+
uses: dtolnay/rust-toolchain@stable
36+
37+
- name: Rust Cache
38+
uses: Swatinem/rust-cache@v2
39+
40+
- name: install dependencies
41+
run: |
42+
sudo apt-get update
43+
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
44+
45+
- name: Build Tauri
46+
run: bun tauri build
47+
48+
- name: Build Cli
49+
run: cargo build -p episko_cli

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install frontend dependencies
2626
run: bun i
2727

28-
- name: Format frontend
28+
- name: Format frontend
2929
run: bun format:ci
3030

3131
- name: Format backend

.github/workflows/lint.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ jobs:
4545
maxColorRange: 3
4646
invertColorRange: true
4747

48-
4948
- name: Validate frontend linting
5049
run: bun check
5150

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ node_modules
66
/.svelte-kit
77
/build
88
coverage
9+
utils/fake-data*
910

1011
# OS
1112
.DS_Store

0 commit comments

Comments
 (0)