https://github.com/schultyy/comet
local continuous integration
https://github.com/schultyy/comet
Last synced: about 1 year ago
JSON representation
local continuous integration
- Host: GitHub
- URL: https://github.com/schultyy/comet
- Owner: schultyy
- License: mit
- Created: 2016-05-26T17:09:49.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-12T21:21:19.000Z (about 10 years ago)
- Last Synced: 2025-04-06T23:35:28.358Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 24.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# comet
> local CI
## Configuration
To configure a new project, place a `.comet.json` in your project directory:
```json
{
"script": [
"cargo test"
],
"watch": "src/"
}
```
Here you see an example configuration for a Rust project.
Then run comet:
```
$ comet
```
If you want to run a project from another directory, run:
```
$ comet -p /Users/jane/other_project
```
To run comet in watch mode, use `-w`:
```
$ comet -p /Users/jane/other_project -w
```