Skip to content

Commit

Permalink
added development README - 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cophilot committed Oct 28, 2024
1 parent 891ddb5 commit 53a32d3
Showing 1 changed file with 28 additions and 5 deletions.
33 changes: 28 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ For a more detailed documentation visit the [templify-docs](https://templify.phi

- [Concept](#concept)
- [Installation](#installation)
- [Linux](#linux)
- [Linux / macOS](#linux--macos)
- [Windows](#windows)
- [Docker](#docker)
- [Development Installation](#development-installation)
- [Development](#development)
- [Installation](#installation-1)
- [CI Pipeline](#ci-pipeline)
- [Templates](#templates)
- [.templify](#templify)
- [Usage](#usage)
Expand Down Expand Up @@ -69,7 +71,7 @@ You can see a real world example [here](https://github.com/cophilot/templify-doc

## Installation

### Linux
### Linux / macOS

Run the following command in your terminal to isntall the latest version of templify:

Expand Down Expand Up @@ -120,11 +122,32 @@ docker run -it templify-image bash

---

## Development Installation
## Development

### Installation

You can either run the CLI tool directly on your machine or use the dev-container.

#### Local

1. Clone the repository
2. Run `./scripts/setup`
3. Now you can run `cargo run <command> --dev` to run the CLI tool
3. Now you can run `cargo run <arguments> --dev` to run the CLI tool

#### Dev-Container

TODO

### CI Pipeline

The CI pipeline ensures the quality of the code. It runs the following checks:

- **Format Check**: Checks if the code is formatted correctly (Script: [format-check](scripts/format-check))
- **Comment Check**: Checks if the code contains enough comments (Script: [comment-check](scripts/comment-check))
- **Linter**: Checks if the code is linted correctly (Script: [lint](scripts/lint))
- **Test**: Runs the test suite (Script: [test](scripts/test))

> You can find the pipeline configuration in the [.github/workflows/check_rust_quality.yml](.github/workflows/check_rust_quality.yml) file.
---

Expand Down

0 comments on commit 53a32d3

Please sign in to comment.