Skip to content

Commit

Permalink
refactor: rewrite Rest API in Rust. (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroh authored Nov 11, 2022
1 parent 2f8e56a commit 378d6a2
Show file tree
Hide file tree
Showing 27 changed files with 2,787 additions and 291 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@ jobs:
- uses: nrwl/nx-set-shas@v3
with:
main-branch-name: "master"
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- run: pnpm install
- run: npx nx workspace-lint
- run: npx nx affected --target=build --parallel=3
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
- run: npx nx affected --target=test --parallel=3 --ci
- run: npx semantic-release
env:
Expand Down
19 changes: 18 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -202,4 +202,21 @@ modules.xml

# End of https://www.toptal.com/developers/gitignore/api/node,webstorm+all

build/
build/

# Created by https://www.toptal.com/developers/gitignore/api/rust
# Edit at https://www.toptal.com/developers/gitignore?templates=rust

### Rust ###
# Generated by Cargo
# will have compiled files and executables
debug/
target/

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# End of https://www.toptal.com/developers/gitignore/api/rust
Loading

0 comments on commit 378d6a2

Please sign in to comment.