https://github.com/matias-gonz/starklings
My solution to starklings
https://github.com/matias-gonz/starklings
cairo starknet starkware
Last synced: 2 months ago
JSON representation
My solution to starklings
- Host: GitHub
- URL: https://github.com/matias-gonz/starklings
- Owner: matias-gonz
- Created: 2023-03-28T12:59:59.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-28T16:07:50.000Z (about 3 years ago)
- Last Synced: 2025-01-20T10:48:19.090Z (over 1 year ago)
- Topics: cairo, starknet, starkware
- Language: Python
- Homepage: https://github.com/onlydustxyz/starklings
- Size: 493 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
---
## Installation
Clone the repository to your local machine:
```shell
git clone --branch stable --single-branch https://github.com/onlydustxyz/starklings.git
```
Then install the tool, run:
```shell
curl -L https://raw.githubusercontent.com/onlydustxyz/starklings/master/install.sh | bash
```
## Usage
Run the tool in watch mode in the repository and follow the instructions:
```shell
cd PATH_TO_THE_CLONED_REPO
starklings --watch
```
To verify an exercise without the watch mode run:
```shell
starklings --verify relative_path_to_the_exercise_file
```
To display one solution to a given exercise run:
```shell
starklings --solution relative_path_to_the_exercise_file
```
## Update
The tool is in continuous evolution. You might want to update it regularly.
```shell
git pull
bash install.sh
```
## Inspiration
- [Protostar](https://github.com/software-mansion/protostar) for all the project tooling and setup, deployment, packaging
- [Rustlings](https://github.com/rust-lang/rustlings) for the amazing pedagogy and brilliant concept of progressive and interactive tutorial
## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md).