https://github.com/seedstack/tools
SeedStack tools.
https://github.com/seedstack/tools
Last synced: about 1 year ago
JSON representation
SeedStack tools.
- Host: GitHub
- URL: https://github.com/seedstack/tools
- Owner: seedstack
- License: mpl-2.0
- Created: 2015-01-22T15:56:30.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-13T12:52:37.000Z (almost 11 years ago)
- Last Synced: 2025-01-24T16:51:12.429Z (about 1 year ago)
- Language: Go
- Homepage: http://seedstack.org
- Size: 349 KB
- Stars: 2
- Watchers: 9
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
SeedStack tools
====
[](https://travis-ci.org/seedstack/tools) [](https://coveralls.io/r/seedstack/tools?branch=master)
Tool to perform common tasks on SEED projects. The main provided
command is `seed fix`. Type `seed help fix` to see a more detailed
documentation.
# Download
Download the [latest version](https://github.com/seedstack/tools/releases).
# Install from source
The following assumes you have Go properly installed and that you have
`$GOPATH/bin` in your `PATH`.
```bash
go get github.com/seedstack/tools/seed
seed
```
# Usage
Apply the transformations described in the `transform.toml` file to
the current directory. Use the `-t` option of the `fix` subcommand.
```bash
seed -t transform.toml fix
```
You can specify the directory where to apply the transformations:
```bash
seed -t ./test/transform.toml fix ./myproject
```
You can also retrieve the transformation file from HTTP:
```bash
seed -t https://raw.githubusercontent.com/seedstack/tools/master/seed/tdf.yml fix
```
# Copyright and license
Code and documentation copyright 2013-2015 The SeedStack authors,
released under the MPL 2.0 license.