Compare commits
1 Commits
main
...
8e489dbb79
| Author | SHA1 | Date | |
|---|---|---|---|
|
8e489dbb79
|
2
.github/workflows/checkov-check.yaml
vendored
2
.github/workflows/checkov-check.yaml
vendored
@@ -22,7 +22,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: "3.13.1"
|
python-version: "3.13.1"
|
||||||
- name: Rust toolchain installation
|
- name: Rust toolchain installation
|
||||||
uses: dtolnay/rust-toolchain@8a40291d6a0a08b8fb98b13bad5a0305b42d5f9c # 1.92.0
|
uses: dtolnay/rust-toolchain@6691ebadcb18182cc1391d07c9f295f657c593cd
|
||||||
- name: code checkout
|
- name: code checkout
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
|
||||||
with:
|
with:
|
||||||
|
|||||||
6
.github/workflows/rust-check.yaml
vendored
6
.github/workflows/rust-check.yaml
vendored
@@ -21,12 +21,12 @@ jobs:
|
|||||||
run: >
|
run: >
|
||||||
apt-get update && apt-get install -y
|
apt-get update && apt-get install -y
|
||||||
libgtk-3-dev=3.24.33-1ubuntu2.2
|
libgtk-3-dev=3.24.33-1ubuntu2.2
|
||||||
libjavascriptcoregtk-4.1-dev=2.50.2-0ubuntu0.22.04.2
|
libjavascriptcoregtk-4.1-dev=2.48.3-0ubuntu0.22.04.1
|
||||||
libsoup-3.0-dev=3.0.7-0ubuntu1
|
libsoup-3.0-dev=3.0.7-0ubuntu1
|
||||||
libwebkit2gtk-4.1-dev=2.50.2-0ubuntu0.22.04.2
|
libwebkit2gtk-4.1-dev=2.48.3-0ubuntu0.22.04.1
|
||||||
libxdo-dev=1:3.20160805.1-4
|
libxdo-dev=1:3.20160805.1-4
|
||||||
- name: Rust toolchain installation
|
- name: Rust toolchain installation
|
||||||
uses: dtolnay/rust-toolchain@8a40291d6a0a08b8fb98b13bad5a0305b42d5f9c # 1.92.0
|
uses: dtolnay/rust-toolchain@6691ebadcb18182cc1391d07c9f295f657c593cd
|
||||||
with:
|
with:
|
||||||
components: clippy, rustfmt
|
components: clippy, rustfmt
|
||||||
- name: code checkout
|
- name: code checkout
|
||||||
|
|||||||
@@ -7,9 +7,8 @@
|
|||||||
"theme_color": "#27272a",
|
"theme_color": "#27272a",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "/assets/images/icon.png",
|
"src": "/images/icon.png",
|
||||||
"sizes": "any",
|
"sizes": "any",
|
||||||
"purpose": "maskable",
|
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
FROM rust:1.88.0-bookworm@sha256:5771a3cc2081935c59ac52b92d49c9e164d4fed92c9f6420aa8cc50364aead6e
|
FROM rust:1.88.0-bookworm@sha256:5771a3cc2081935c59ac52b92d49c9e164d4fed92c9f6420aa8cc50364aead6e
|
||||||
|
|
||||||
RUN cargo install --locked dioxus-cli --version 0.6.3 \
|
RUN cargo install dioxus-cli --version 0.6.3 \
|
||||||
&& cargo install --locked diesel_cli --version 2.2.7
|
&& cargo install diesel_cli --version 2.2.7
|
||||||
|
|
||||||
COPY . /srv/app
|
COPY . /srv/app
|
||||||
WORKDIR /srv/app
|
WORKDIR /srv/app
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
npm=9.2.0~ds1-1 \
|
npm=9.2.0~ds1-1 \
|
||||||
&& apt-get clean \
|
&& apt-get clean \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
&& cargo install --locked dioxus-cli --version 0.6.3 \
|
&& cargo install dioxus-cli --version 0.6.3 \
|
||||||
&& cargo install --locked diesel_cli --version 2.2.7
|
&& cargo install diesel_cli --version 2.2.7
|
||||||
|
|
||||||
COPY . /srv/app
|
COPY . /srv/app
|
||||||
WORKDIR /srv/app
|
WORKDIR /srv/app
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ pub(crate) fn App() -> Element {
|
|||||||
document::Stylesheet { href: FONTS_CSS }
|
document::Stylesheet { href: FONTS_CSS }
|
||||||
document::Stylesheet { href: INPUT_NUMBER_ARROWS_CSS }
|
document::Stylesheet { href: INPUT_NUMBER_ARROWS_CSS }
|
||||||
document::Stylesheet { href: INPUT_RANGE_CSS }
|
document::Stylesheet { href: INPUT_RANGE_CSS }
|
||||||
document::Link { rel: "manifest", href: MANIFEST, crossorigin: "use-credentials" }
|
document::Link { rel: "manifest", href: MANIFEST }
|
||||||
document::Script { src: "https://kit.fontawesome.com/3c1b409f8f.js" }
|
document::Script { src: "https://kit.fontawesome.com/3c1b409f8f.js" }
|
||||||
|
|
||||||
div {
|
div {
|
||||||
|
|||||||
Reference in New Issue
Block a user