Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Contributor bot #36

Merged
merged 11 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"README.md"
],
"imageSize": 100,
"commit": false,
"commit": true,
"commitType": "docs",
"commitConvention": "angular",
"contributors": [
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build

on:
push:
branches: ["main", "solomon"]
pull_request:
branches: ["main", "solomon"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Cache Scarb dependencies
uses: actions/cache@v3
with:
path: ~/.scarb
key: ${{ runner.os }}-scarb-${{ hashFiles('**/Cargo.toml') }}
restore-keys: |
${{ runner.os }}-scarb-

- name: Install Scarb
run: |
curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | sh

- name: Run Scarb commands
working-directory: ./land_registry
run: |
scarb fmt --check
scarb build
scarb test
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# LandVer - Land Verification System
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-)
[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->

LandVer is a decentralized land registration and verification protocol, utilizing blockchain technology to provide a secure, transparent, and immutable system for managing land records. The protocol facilitates land transactions and ownership verification across multiple blockchains, beginning with StarkNet.
Expand All @@ -19,14 +19,26 @@ The project is divided into the following components:

- `backend/`: Node.js and Express-based API server
- `docs/`: Documentation for the project, including setup guides and API references
- `frontend/`: React-based web application
- `examples/`: React-based web application
- `land_registry/`: Land registry contract
- `public/`: Public assets and resources
- `scripts/`: JavaScript tools for automation and utility tasks
- `sdk/`: JavaScript for interacting with the smart contracts and API

## Contributors


<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->
<!-- ALL-CONTRIBUTORS-LIST:END -->



[![All Contributors](https://img.shields.io/github/all-contributors/NoshonNetworks/landver?color=ee8449&style=flat-square)](#contributors)

<a href="https://github.com/NoshonNetworks/landver/graphs/contributors">
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
Expand All @@ -35,7 +47,6 @@ The project is divided into the following components:
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://fishonsnote.medium.com/"><img src="https://avatars.githubusercontent.com/u/43862685?v=4?s=100" width="100px;" alt="Fishon Amos"/><br /><sub><b>Fishon Amos</b></sub></a><br /><a href="https://github.com/NoshonNetworks/landver/commits?author=fishonamos" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Solomonsolomonsolomon"><img src="https://avatars.githubusercontent.com/u/103282647?v=4?s=100" width="100px;" alt="Solomonsolomonsolomon"/><br /><sub><b>Solomonsolomonsolomon</b></sub></a><br /><a href="https://github.com/NoshonNetworks/landver/commits?author=Solomonsolomonsolomon" title="Code">💻</a></td>
</tr>
</tbody>
</table>
Expand All @@ -44,7 +55,6 @@ The project is divided into the following components:
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->
<img src="https://contrib.rocks/image?repo=NoshonNetworks/landver" alt="contrib.rocks image" />
</a>


Expand Down
24 changes: 0 additions & 24 deletions frontend/.gitignore

This file was deleted.

28 changes: 0 additions & 28 deletions frontend/eslint.config.js

This file was deleted.

13 changes: 0 additions & 13 deletions frontend/index.html

This file was deleted.

Loading
Loading