2016-08-17 14:56:06 +00:00
## Realize
2016-08-21 12:23:28 +00:00
2016-11-11 16:24:18 +00:00
[![GoDoc ](https://img.shields.io/badge/documentation-godoc-blue.svg )](https://godoc.org/github.com/tockins/realize)
2016-08-23 17:07:09 +00:00
[![TeamCity CodeBetter ](https://travis-ci.org/tockins/realize.svg?branch=v1 )](https://travis-ci.org/tockins/realize)
2016-08-17 19:34:20 +00:00
[![AUR ](https://img.shields.io/aur/license/yaourt.svg?maxAge=2592000?style=flat-square )](https://raw.githubusercontent.com/tockins/realize/v1/LICENSE)
2016-08-19 21:48:22 +00:00
[![ ](https://img.shields.io/badge/realize-examples-yellow.svg )](https://github.com/tockins/realize-examples)
2016-08-21 15:18:33 +00:00
[![Join the chat at https://gitter.im/tockins/realize ](https://badges.gitter.im/tockins/realize.svg )](https://gitter.im/tockins/realize?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge& utm_content=badge)
2016-08-23 20:21:15 +00:00
[![Go Report Card ](https://goreportcard.com/badge/github.com/tockins/realize )](https://goreportcard.com/report/github.com/tockins/realize)
2016-08-23 19:54:39 +00:00
2017-08-08 15:13:35 +00:00
![Logo ](http://i.imgur.com/pkMDtrl.png )
2016-08-18 08:10:59 +00:00
2017-08-08 15:13:35 +00:00
Realize is a Go tool that is focused to speed up and improve the developers workflow.
2016-08-18 08:10:59 +00:00
2017-08-08 15:14:09 +00:00
Automate your work pipeline, integrate additional tools of third party, define custom cli commands and reload projects at each changed without stop to write code.
2016-07-24 23:02:18 +00:00
2016-10-14 09:38:48 +00:00
![Preview ](http://i.imgur.com/dJbNZjt.gif )
2016-08-17 23:08:10 +00:00
2016-08-17 19:34:20 +00:00
#### Features
2016-08-21 18:15:44 +00:00
- Highly customizable
2017-08-08 15:13:35 +00:00
- Setup step by step
- Live reload
2016-12-04 18:55:35 +00:00
- Support for multiple projects
2017-08-08 15:13:35 +00:00
- Save logs on files
- Web panel for a smart view
- Build, install, run, test, fmt, generate, vet and much more
- Watch custom paths and specific file extensions
- Multiple watching methods (Polling, File watcher)
- Docker support
2017-03-13 00:04:58 +00:00
2017-06-19 11:15:46 +00:00
v 1.5
2017-04-01 21:32:40 +00:00
2017-08-08 15:13:35 +00:00
- [ ] Watch gopath dependencies
- [ ] Web panel, download logs
- [ ] Multiple configurations (dev, production)
- [ ] Support to ignore paths and files in gititnore
2017-04-01 21:33:39 +00:00
- [ ] Input redirection (wait for an input and redirect)
2017-04-01 21:32:40 +00:00
2017-03-13 00:04:58 +00:00
#### Wiki
2017-08-05 14:03:43 +00:00
- [Getting Started ](#installation )
2017-03-13 00:04:58 +00:00
- [Run cmd ](#run ) - Run a project
- [Add cmd ](#add ) - Add a new project
- [Init cmd ](#init ) - Make a custom config step by step
- [Remove cmd ](#remove ) - Remove a project
- [List cmd ](#list ) - List the projects
2017-08-08 15:13:35 +00:00
- [Config sample ](#config-sample ) - Sample config file
2017-08-05 14:03:43 +00:00
- [Support ](#support-us-and-suggest-an-improvement )
2017-03-13 00:04:58 +00:00
2017-08-05 14:03:43 +00:00
#### Installation
2017-03-13 00:04:58 +00:00
Run this to get/install:
```
$ go get github.com/tockins/realize
```
#### Commands
2017-04-01 18:37:50 +00:00
- ##### Run
2017-04-01 18:42:33 +00:00
From project/projects root execute:
```
$ realize run
```
2017-08-07 21:37:45 +00:00
It will create a realize.yaml file if it doesn't exist already, add the working directory as project and run the pipeline.
2017-04-01 18:42:33 +00:00
The Run command supports the following custom parameters:
```
2017-06-19 11:29:47 +00:00
--name="name" -> Run by name on existing configuration
2017-04-01 18:42:33 +00:00
--path="realize/server" -> Custom Path, if not specified takes the working directory name
--build -> Enable go build
--no-run -> Disable go run
--no-install -> Disable go install
--no-config -> Ignore an existing config / skip the creation of a new one
--server -> Enable the web server
--legacy -> Enable legacy watch instead of Fsnotify watch
--generate -> Enable go generate
--test -> Enable go test
```
Examples:
```
$ realize run
$ realize run --path="mypath"
$ realize run --name="My Project" --build
$ realize run --path="realize" --no-run --no-config
$ realize run --path="/Users/alessio/go/src/github.com/tockins/realize-examples/coin/"
```
If you want, you can specify additional arguments for your project.
**The additional arguments must go after the params**
**Run can run a project from its working directory without make a config file (--no-config).**
```
$ realize run --path="/print/printer" --no-run yourParams --yourFlags // right
$ realize run yourParams --yourFlags --path="/print/printer" --no-run // wrong
```
2017-04-01 18:37:50 +00:00
- ##### Add
2017-04-01 18:42:33 +00:00
Add a project to an existing config file or create a new one without run the pipeline.
"Add" supports the same parameters of the "Run" command.
```
$ realize add
```
2017-03-13 00:04:58 +00:00
2017-04-01 18:37:50 +00:00
- ##### Init
2017-04-01 18:42:33 +00:00
Like add, but with this command you can create a configuration step by step and customize each option.
**Init is the only command that supports a complete customization of all the options supported**
```
$ realize init
```
2017-03-13 00:11:05 +00:00
2017-04-01 18:37:50 +00:00
- ##### Remove
2017-04-01 18:42:33 +00:00
Remove a project by its name
```
$ realize remove --name="myname"
```
2017-03-13 00:04:58 +00:00
2017-04-01 18:37:50 +00:00
- ##### List
2017-04-01 18:42:33 +00:00
Projects list in cli
```
$ realize list
```
2016-08-30 13:58:02 +00:00
2017-04-01 18:37:50 +00:00
- #### Color reference
2017-04-01 18:42:33 +00:00
- Blue: outputs of the project
- Red: errors
- Magenta: times or changed files
- Green: successfully completed action
2016-08-24 15:50:52 +00:00
2017-04-01 18:37:50 +00:00
- #### Config sample
2017-04-01 18:42:33 +00:00
For more examples check [Realize Examples ](https://github.com/tockins/realize-examples )
```
settings:
2017-06-19 11:28:21 +00:00
legacy:
status: true // legacy watch status
interval: 10s // polling interval
resources: // files names related to streams
2017-04-01 18:42:33 +00:00
outputs: outputs.log
logs: logs.log
errors: errors.log
server:
2017-06-19 11:28:21 +00:00
status: false // server status
open: false // open browser at start
host: localhost // server host
port: 5001 // server port
2017-04-01 18:42:33 +00:00
projects:
2017-06-19 11:28:21 +00:00
- name: coin
path: coin // project path
2017-08-08 15:13:35 +00:00
environment: // env variables
test: test
myvar: value
2017-06-19 11:28:21 +00:00
commands:
vet: true
fmt: true
test: false
generate: false
bin:
status: true
build:
status: false
2017-06-19 11:35:30 +00:00
args:
- -race
2017-06-19 11:28:21 +00:00
run: true
args:
- --myarg
2017-04-01 18:42:33 +00:00
watcher:
2017-06-19 11:28:21 +00:00
preview: false // watched files preview
paths: // watched paths
2017-04-01 18:42:33 +00:00
- /
2017-06-19 11:28:21 +00:00
ignore_paths: // ignored paths
- vendor
exts: // watched extensions
2017-04-01 18:42:33 +00:00
- .go
scripts:
2017-06-19 11:28:21 +00:00
- type: before // type
command: ./ls -l // command
changed: true // relaunch when a file changes
2017-06-19 11:31:28 +00:00
startup: true // launch at start
2017-04-01 18:42:33 +00:00
- type: after
2017-06-19 11:28:21 +00:00
command: ./ls
changed: true
streams: // enable/disable streams
2017-06-19 11:35:30 +00:00
cli_out: true
file_out: false
file_log: false
file_err: false
2017-06-19 11:28:21 +00:00
2017-04-01 18:42:33 +00:00
```
2016-08-17 20:55:31 +00:00
2016-08-17 14:56:06 +00:00
2017-08-05 14:03:43 +00:00
#### Support us and suggest an improvement
2016-08-21 15:17:25 +00:00
- Chat with us [Gitter ](https://gitter.im/tockins/realize )
2017-04-01 18:42:33 +00:00
- Suggest a new [Feature ](https://github.com/tockins/realize/issues/new )