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
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
- Support for multiple projects
- Output streams and error logs (Watch them in console or save them on a file)
- Web Panel (Watch all projects, edit the config settings, download each type of log)
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-12-17 01:13:45 +00:00
It will create a realize.yaml file if it doesn't exist already and adds the working directory as project.
2016-08-23 12:58:14 +00:00
2016-11-20 17:44:42 +00:00
Otherwise if a config file already exists it adds the working project to the existing config file.
2016-08-23 12:58:14 +00:00
2016-12-17 01:13:45 +00:00
The Add command supports the following custom parameters:
2016-08-23 12:58:14 +00:00
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
2016-09-18 11:57:14 +00:00
--path="server" -> Custom Path, if not specified takes the working directory name
2016-08-23 13:33:20 +00:00
--build -> Enables the build
2016-10-14 10:01:22 +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-12-19 22:28:02 +00:00
--no-server -> Disables the web panel (default port 5001)
2016-10-17 10:28:12 +00:00
--open -> Open the web panel in a new browser window
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-30 17:33:25 +00:00
2016-08-21 18:15:44 +00:00
$ realize add --path="mypath"
2016-08-30 17:33:25 +00:00
2016-08-21 10:21:11 +00:00
$ realize add --name="My Project" --build
2016-08-30 17:33:25 +00:00
2016-08-21 18:15:44 +00:00
$ realize add --name="My Project" --path="/projects/package" --build
2016-08-30 17:33:25 +00:00
2016-08-23 13:31:28 +00:00
$ realize add --name="My Project" --path="projects/package" --build --no-run
2016-08-30 17:33:25 +00:00
$ realize add --path="/Users/alessio/go/src/github.com/tockins/realize-examples/coin/"
2016-08-17 14:56:06 +00:00
```
2016-08-30 13:58:02 +00:00
2016-08-27 14:55:29 +00:00
If you want, you can specify additional arguments for your project.
2016-08-30 13:58:02 +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-30 13:58:02 +00:00
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
2016-11-20 17:44:42 +00:00
Run can also launch a project from its working directory with or without make a config file (--no-config option).
It supports the following custom parameters:
2016-08-21 21:35:13 +00:00
```
2016-09-18 11:57:14 +00:00
--path="server" -> Custom Path, if not specified takes the working directory name
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-09-18 11:57:14 +00:00
--config -> Take the defined settings if exist a config file
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-09-18 11:57:14 +00:00
--no-server -> Disables the web panel (port :5000)
2016-11-20 17:44:42 +00:00
--no-config -> Doesn't create any configuration files
2016-10-17 10:28:12 +00:00
--open -> Open the web panel in a new browser window
2016-12-19 23:47:01 +00:00
--port -> Sets the web panel port
2016-08-27 14:55:29 +00:00
```
2016-11-20 17:44:42 +00:00
And additional arguments as the "add" command.
2016-11-14 08:28:34 +00:00
2016-08-27 14:55:29 +00:00
```
2016-11-14 08:28:34 +00:00
$ realize run --no-run yourParams --yourFlags // correct
2016-08-27 14:55:29 +00:00
2016-11-14 08:28:34 +00:00
$ realize run yourParams --yourFlags --no-run // wrong
2016-08-30 17:33:25 +00:00
2016-11-14 08:28:34 +00:00
$ realize run --path="/Users/alessio/go/src/github.com/tockins/realize-examples/coin/"
2016-08-27 14:55:29 +00:00
```
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
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-12-21 22:47:42 +00:00
flimit: 15000 // Alters the default maximum number of open files
server:
status: true // Disable/Enable the server
host: localhost // Defines the server address
port: 5001 // Defines the server port
open: true // Opens the server in a new browser tab
resources:
logs: logs.log // Save the logs on the defined file, disabled if removed
outputs: outputs.log // Save the outputs on the defined file, disabled if removed
errors: errors.log // Save the errors on the defined file, disabled if removed
2016-11-14 08:28:34 +00:00
projects:
2016-12-21 22:47:42 +00:00
- name: realize // Project name
path: . // Project path
fmt: true // Disable/Enable go ftm
test: false // Disable/Enable go test
generate: false // Disable/Enable go generate
bin: true // Disable/Enable go install
build: false // Disable/Enable go build
run: false // Disable/Enable go run
streams: true // Enable/Disable the output streams in cli
params: [] // Run the project with defined additional params
2016-11-14 08:28:34 +00:00
watcher:
2016-12-21 22:47:42 +00:00
preview: false // Enable/Disable the preview of the watched files
paths: // Paths to watch, sub-paths included
2016-11-14 08:28:34 +00:00
- /
2016-12-21 22:47:42 +00:00
ignore_paths: // Paths ignored
2016-11-14 08:28:34 +00:00
- vendor
2016-12-21 22:47:42 +00:00
exts: // File extensions to watch
2016-11-14 08:28:34 +00:00
- .go
2016-12-21 22:47:42 +00:00
commands: // Additional commands to run after and before
- before: go install // Defines if after or before
- before: golint
watched: true // Run the command with all watched paths
foreach: true // Run the command at each reload
- after: cd server && gobindata
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 )