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
2016-08-18 08:10:59 +00:00
![Logo ](http://i.imgur.com/8nr2s1b.jpg )
2016-08-23 15:00:25 +00:00
A Go build system with file watchers, output streams and live reload. Run, build and watch file changes with custom paths
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-03-13 00:04:58 +00:00
- Config your project Step by Step
2016-12-04 18:55:35 +00:00
- Build, Install, Test, Fmt, Generate and Run at the same time
- Live reload on file changes (re-build, re-install...)
- Watch custom paths and specific file extensions
2017-03-13 00:04:58 +00:00
- Watch by FsNotify or by polling
2016-12-04 18:55:35 +00:00
- Support for multiple projects
2017-03-13 00:04:58 +00:00
- Output streams and error logs (support for save on a file)
- Web Panel (projects list, config settings, logs)
#### Wiki
- [Getting Started ](#installation-and-usage )
- [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
- [Config sample ](#config-sample )
##### Installation
Run this to get/install:
```
$ go get github.com/tockins/realize
```
#### Commands
##### Run
From project/projects root execute:
```
$ realize run
```
It will create a realize.yaml file if it doesn't exist already, adds the working directory as project and run the pipeline.
The Run command supports the following custom parameters:
```
--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
```
##### Add
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
```
##### Remove
Remove a project by its name
```
$ realize remove --name="myname"
```
##### List
Projects list in cli
```
$ realize list
```
2016-08-30 13:58:02 +00:00
2016-08-24 15:50:52 +00:00
#### Color reference
- Blue: outputs of the project
2016-08-26 17:33:13 +00:00
- Red: errors
2016-08-24 15:50:52 +00:00
- Magenta: times or changed files
- Green: successfully completed action
2017-03-13 00:04:58 +00:00
#### Config sample
2016-08-17 20:55:31 +00:00
2016-08-19 21:42:57 +00:00
- For more examples check [Realize Examples ](https://github.com/tockins/realize-examples )
2016-08-23 12:58:14 +00:00
2016-08-19 21:44:24 +00:00
```
2017-03-13 00:04:58 +00:00
settings:
legacy:
status: true // legacy watch status
interval: 10s // polling interval
resources: // files names related to streams
outputs: outputs.log
logs: logs.log
errors: errors.log
server:
status: true // server status
open: false // auto open in browser on start
host: localhost // server host
port: 5001 // server port
2016-11-14 08:28:34 +00:00
projects:
2017-03-13 00:04:58 +00:00
- name: realize
path: . // project path
fmt: true
generate: false
test: false
bin: true
build: false
run: false
params: // additional params
- --myarg
2016-11-14 08:28:34 +00:00
watcher:
2017-03-13 00:04:58 +00:00
preview: false // wached files preview
paths: // paths to watch
2016-11-14 08:28:34 +00:00
- /
2017-03-13 00:04:58 +00:00
ignore_paths: // paths to ignore
2016-11-14 08:28:34 +00:00
- vendor
2017-03-13 00:04:58 +00:00
exts: // exts to watch
2016-11-14 08:28:34 +00:00
- .go
2017-03-13 00:04:58 +00:00
scripts: // custom commands after/before
- type: after // type after/before
command: go run mycmd after // command
path: "" // run from a custom path or from the working dir
streams: // enable/disable streams
cli_out: true
file_out: false
file_log: false
file_err: false
2016-08-19 21:44:24 +00:00
```
2016-08-17 20:55:31 +00:00
2016-12-16 22:54:57 +00:00
#### Next features, in progress...
2016-08-17 14:56:06 +00:00
2016-12-04 18:55:35 +00:00
- [ ] Web panel - edit settings (full support)
2016-12-16 22:54:57 +00:00
- [ ] Web panel - logs download
- [ ] Schedule - reload a project after a specific time
2016-12-04 19:04:45 +00:00
- [ ] Easy dependencies - automatically resolve the project dependencies
2016-12-16 22:54:57 +00:00
- [ ] Import license - retrieve the license for each imported library
2016-11-17 00:02:46 +00:00
- [ ] Tests
2016-08-17 14:56:06 +00:00
2016-12-04 19:04:45 +00:00
2016-08-21 15:17:25 +00:00
#### Contacts
- Chat with us [Gitter ](https://gitter.im/tockins/realize )
- [Alessio Pracchia ](https://www.linkedin.com/in/alessio-pracchia-38a70673 )
2016-08-30 13:58:02 +00:00
- [Daniele Conventi ](https://www.linkedin.com/in/conventi )