2025-04-12 04:16:43 +08:00
|
|
|
# Contribute README
|
|
|
|
|
Thanks for your contribution, you can follow these step to run this repo and debug it.
|
|
|
|
|
## Run demo
|
|
|
|
|
1. clone this repo to your work dir.
|
|
|
|
|
```bash
|
2026-02-26 16:59:59 +03:00
|
|
|
git clone https://github.com/mark3labs/kit.git
|
2025-04-12 04:16:43 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
2. enter the `contribute` dir.
|
|
|
|
|
```bash
|
2026-02-26 16:59:59 +03:00
|
|
|
cd kit/contribute
|
2025-04-12 04:16:43 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
3. run `build.sh` to build your binary file.
|
|
|
|
|
```bash
|
|
|
|
|
./build.sh
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
4. open `boost.sh` file and fill your model info in.
|
|
|
|
|
```bash
|
|
|
|
|
cat boost.sh
|
|
|
|
|
vi boost.sh
|
|
|
|
|
```
|
|
|
|
|
|
2026-02-26 16:59:59 +03:00
|
|
|
5. run `boost.sh` to run kit, if you don't want run it in debug model, you can delete the `--debug` flag in `boost.sh`.
|
2025-04-12 04:16:43 +08:00
|
|
|
```bash
|
|
|
|
|
./boost.sh
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Contribute your code
|
|
|
|
|
just write your code and push it.
|