https://github.com/ozwaldorf/ic-playground
https://github.com/ozwaldorf/ic-playground
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ozwaldorf/ic-playground
- Owner: ozwaldorf
- Created: 2022-08-19T04:12:30.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-26T20:05:01.000Z (almost 3 years ago)
- Last Synced: 2025-02-15T20:20:39.120Z (4 months ago)
- Language: Rust
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IC-Kit Playground
This is a canister playground for experimenting with the IC. It provides a base template for any single canister project using the ic-kit (`0.5.0`)
## Getting started
1) Initialize dependencies
```
make init
```2) Deploy the canister locally
> This will automatically start the local replica and deploy, or redeploy the canister on the already running replica.
```
make local
```## Developing in the repository
You can manually generate the candid by running
```
make candid
```> The kit automatically generates a rust test `save_candid` for each canister which will generate a candid file to the path specified. The make script runs these cargo tests to save the candid.
You can also clean your environment, which will stop dfx and clean cargo, using
```
make clean
```