2016-08-17 14:56:06 +00:00
## Realize
2016-08-21 12:23:28 +00:00
2016-08-18 07:45:58 +00:00
[![GoDoc ](https://img.shields.io/badge/documentation-godoc-blue.svg )](https://godoc.org/github.com/tockins/realize/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-08-24 15:42:03 +00:00
![Preview ](http://i.imgur.com/GV2Yus5.png )
2016-08-17 23:08:10 +00:00
2016-08-17 19:34:20 +00:00
#### Features
2016-08-21 15:20:21 +00:00
- Build, Install, Test, Fmt and Run at the same time
2016-08-17 19:34:20 +00:00
- Live reload on file changes (re-build, re-install and re-run)
- Watch custom paths
- Watch specific file extensions
2016-08-17 20:45:14 +00:00
- Multiple projects support
2016-08-20 08:01:10 +00:00
- Output streams
2016-08-20 14:17:46 +00:00
- Execution times
2016-08-21 18:15:44 +00:00
- Highly customizable
2016-08-23 12:58:14 +00:00
- Fast run
2016-08-17 19:34:20 +00:00
2016-08-17 14:56:06 +00:00
#### Installation and usage
2016-08-22 16:08:11 +00:00
- Run this to get/install:
2016-08-17 15:11:35 +00:00
2016-08-17 14:56:06 +00:00
```
2016-08-17 21:05:20 +00:00
$ go get github.com/tockins/realize
2016-08-17 14:56:06 +00:00
```
2016-08-23 12:58:14 +00:00
2016-08-22 16:08:11 +00:00
- From project/projects root execute:
2016-08-17 14:57:41 +00:00
2016-08-17 14:56:06 +00:00
```
2016-08-23 12:58:14 +00:00
$ realize add
2016-08-17 14:56:06 +00:00
```
2016-08-23 12:58:14 +00:00
2016-08-22 16:08:11 +00:00
It will create a realize.config.yaml file if it doesn't exist already and adds the working directory as the project.
2016-08-23 12:58:14 +00:00
2016-08-22 16:08:11 +00:00
Otherwise if a config file already exists it adds another project to the existing config file.
2016-08-23 12:58:14 +00:00
The add command supports the following custom parameters:
2016-08-17 14:56:06 +00:00
```
2016-08-23 13:33:20 +00:00
--name="Project Name" -> Name, if not specified takes the working directory name
--path="server" -> Base Path, if not specified takes the working directory name
--build -> Enables the build
2016-08-27 22:16:30 +00:00
--test -> Enables the tests
2016-08-23 13:31:28 +00:00
--no-bin -> Disables the installation
--no-run -> Disables the run
--no-fmt -> Disables the fmt (go fmt)
2016-08-20 07:47:55 +00:00
```
2016-08-22 16:08:11 +00:00
Examples:
2016-08-17 14:57:41 +00:00
2016-08-17 14:56:06 +00:00
```
2016-08-20 07:47:55 +00:00
$ realize add
2016-08-23 12:58:14 +00:00
```
2016-08-21 07:43:43 +00:00
```
2016-08-21 18:15:44 +00:00
$ realize add --path="mypath"
2016-08-21 07:43:43 +00:00
```
2016-08-20 07:47:55 +00:00
```
2016-08-21 10:21:11 +00:00
$ realize add --name="My Project" --build
```
```
2016-08-21 18:15:44 +00:00
$ realize add --name="My Project" --path="/projects/package" --build
2016-08-21 10:21:11 +00:00
```
```
2016-08-23 13:31:28 +00:00
$ realize add --name="My Project" --path="projects/package" --build --no-run
2016-08-17 14:56:06 +00:00
```
2016-08-27 14:55:29 +00:00
If you want, you can specify additional arguments for your project.
2016-08-27 15:02:13 +00:00
2016-08-27 14:55:29 +00:00
**The additional arguments must go after the options of "Realize"**
```
$ realize add --path="/print/printer" --no-run yourParams --yourFlags // correct
$ realize add yourParams --yourFlags --path="/print/printer" --no-run // wrong
```
2016-08-22 16:08:11 +00:00
- Remove a project by its name
2016-08-17 14:57:41 +00:00
2016-08-17 14:56:06 +00:00
```
2016-08-17 21:06:29 +00:00
$ realize remove --name="Project Name"
2016-08-17 14:56:06 +00:00
```
- Lists all projects
2016-08-17 14:57:41 +00:00
2016-08-17 14:56:06 +00:00
```
2016-08-17 21:06:29 +00:00
$ realize list
2016-08-17 14:56:06 +00:00
```
2016-08-22 16:08:11 +00:00
- Build, Run and watch file changes. Realize will re-build and re-run your projects on each change.
2016-08-17 14:57:41 +00:00
2016-08-17 14:56:06 +00:00
```
2016-08-23 12:58:14 +00:00
$ realize run
2016-08-17 14:56:06 +00:00
```
2016-08-23 12:58:14 +00:00
Fast run launches a project from its working directory without a config file
2016-08-21 18:42:43 +00:00
```
2016-08-21 21:35:13 +00:00
$ realize fast
2016-08-21 18:42:43 +00:00
```
2016-08-27 14:55:29 +00:00
The fast command supports the following custom parameters:
2016-08-23 12:58:14 +00:00
2016-08-21 21:35:13 +00:00
```
2016-08-23 13:33:20 +00:00
--build -> Enables the build
2016-08-27 22:16:30 +00:00
--test -> Enables the tests
2016-08-23 13:31:28 +00:00
--no-bin -> Disables the installation
--no-run -> Disables the run
--no-fmt -> Disables the fmt (go fmt)
2016-08-23 13:33:20 +00:00
--config -> Take the defined settings if exist a config file
2016-08-27 14:55:29 +00:00
```
The "fast" command supporst addittional arguments as the "add" command.
```
$ realize fast --no-run yourParams --yourFlags // correct
$ realize fast yourParams --yourFlags --no-run // wrong
```
2016-08-17 14:56:06 +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
2016-08-17 20:55:31 +00:00
#### Config file example
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
```
2016-08-17 20:55:31 +00:00
version: "1.0"
projects:
2016-08-17 22:42:44 +00:00
- app_name: App One -> name
app_path: one -> root path
app_run: true -> enable/disable go run (require app_bin)
app_bin: true -> enable/disable go install
app_build: false -> enable/disable go build
2016-08-21 15:17:49 +00:00
app_fmt: true -> enable/disable go fmt
2016-08-27 22:16:30 +00:00
app_test: true -> enable/disable go test
2016-08-27 15:13:38 +00:00
app_params: -> the project will be launched with these parameters
2016-08-26 17:33:13 +00:00
- --flag1
- param1
2016-08-17 20:55:31 +00:00
app_watcher:
2016-08-17 22:42:44 +00:00
preview: true -> prints the observed files on startup
paths: -> paths to observe for live reload
2016-08-17 20:55:31 +00:00
- /
2016-08-17 22:42:44 +00:00
ignore_paths: -> paths to ignore
2016-08-17 20:55:31 +00:00
- vendor
- bin
2016-08-17 22:42:44 +00:00
exts: -> file extensions to observe for live reload
2016-08-17 20:55:31 +00:00
- .go
2016-08-17 22:42:44 +00:00
- app_name: App Two -> another project
2016-08-17 20:55:31 +00:00
app_path: two
app_run: true
app_build: true
app_bin: true
app_watcher:
paths:
- /
ignore_paths:
- vendor
- bin
exts:
2016-08-23 12:58:14 +00:00
- .go
2016-08-19 21:44:24 +00:00
```
2016-08-17 20:55:31 +00:00
2016-08-21 15:17:25 +00:00
#### Next releases
#####Milestone 1.0
2016-08-17 20:50:18 +00:00
- [x] Cli start, remove, add, list, run
2016-07-24 23:02:18 +00:00
- [x] Remove duplicate projects
2016-08-17 20:50:18 +00:00
- [x] Support for multiple projects
2016-08-04 20:01:08 +00:00
- [x] Watcher files preview
2016-08-14 15:22:48 +00:00
- [x] Support for directories with duplicates names
2016-08-27 22:16:30 +00:00
- [x] Go test support
2016-08-27 14:55:29 +00:00
- [x] Additional arguments
2016-08-21 15:17:25 +00:00
- [x] Go fmt support
2016-08-21 22:57:04 +00:00
- [x] Cli fast run
2016-08-23 12:58:14 +00:00
- [x] Execution times for build/install
2016-08-18 10:51:10 +00:00
- [x] Go doc
2016-08-23 12:58:14 +00:00
- [x] Support for server start/stop
2016-08-17 20:50:18 +00:00
- [x] Stream projects output
2016-08-17 14:56:06 +00:00
- [x] Cli feedback
2016-08-21 15:17:25 +00:00
##### Milestone 1.1
2016-08-21 11:37:27 +00:00
- [ ] Test under windows
- [ ] Unit test
2016-08-25 13:02:34 +00:00
- [ ] Custom path on commands
2016-08-26 17:33:13 +00:00
- [ ] Output files
2016-08-25 12:18:20 +00:00
- [ ] Cli args
2016-08-25 13:02:34 +00:00
- [ ] Before/After command
2016-08-29 09:58:29 +00:00
- [ ] Cli spinner
2016-08-21 11:37:27 +00:00
2016-08-17 14:56:06 +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-21 15:21:19 +00:00
- [Daniele Conventi ](https://www.linkedin.com/in/daniele-conventi-b419b0a4 )