Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.github
.git
.gitignore
frontend/node_modules
.env
.idea
README.md
LICENSE
.dockerignore
docker-compose.yml
target
backend/Dockerfile
frontend/Dockerfile
.qodo
11 changes: 6 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ jobs:
linter:
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Rust toolchain
uses: dtolnay/rust-toolchain@master
#uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
toolchain: stable
toolchain: nightly
- name: Install and Cache Apt packages
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: nasm
version: 1.0
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2.8.0
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Run linter (clippy action)
#env: SQLX_OFFLINE: true
uses: clechasseur/rs-clippy-check@v5.0.1
uses: clechasseur/rs-clippy-check@v5
with:
#token: ${{ secrets.GITHUB_TOKEN }}
args: --workspace
Expand All @@ -40,10 +40,11 @@ jobs:
formatting:
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Rustfmt Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: rustfmt
- name: Rust fmt check
uses: actions-rust-lang/rustfmt@v1
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.qodo
.idea
.env
prod.env
/target

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading