https://github.com/frol/near-todo-app-contract
https://github.com/frol/near-todo-app-contract
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/frol/near-todo-app-contract
- Owner: frol
- Created: 2024-10-18T17:04:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-09T20:24:53.000Z (about 1 year ago)
- Last Synced: 2025-07-15T01:22:21.736Z (12 months ago)
- Language: Rust
- Size: 173 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# todo-app-contract
Features:
* Add new todo
* List all todos
* Mark todo as done
* Delete todo
* Edit todo
## How to Build Locally?
Install [`cargo-near`](https://github.com/near/cargo-near) and run:
```bash
cargo near build
```
## How to Test Locally?
```bash
cargo test
```
## How to Deploy?
Deployment is automated with GitHub Actions CI/CD pipeline.
To deploy manually, install [`cargo-near`](https://github.com/near/cargo-near) and run:
```bash
cargo near deploy
```
## Useful Links
- [cargo-near](https://github.com/near/cargo-near) - NEAR smart contract development toolkit for Rust
- [near CLI](https://near.cli.rs) - Interact with NEAR blockchain from command line
- [NEAR Rust SDK Documentation](https://docs.near.org/sdk/rust/introduction)
- [NEAR Documentation](https://docs.near.org)
- [NEAR StackOverflow](https://stackoverflow.com/questions/tagged/nearprotocol)
- [NEAR Discord](https://near.chat)
- [NEAR Telegram Developers Community Group](https://t.me/neardev)
- NEAR DevHub: [Telegram](https://t.me/neardevhub), [Twitter](https://twitter.com/neardevhub)