changed links and references
This commit is contained in:
parent
8946c2c610
commit
9ad7d7bf02
24
README.md
24
README.md
@ -1,11 +1,11 @@
|
|||||||
# Realize
|
# Realize
|
||||||
|
|
||||||
[](https://godoc.org/github.com/tockins/realize)
|
[](https://godoc.org/github.com/oxequa/realize)
|
||||||
[](https://travis-ci.org/tockins/realize)
|
[](https://travis-ci.org/oxequa/realize)
|
||||||
[](https://raw.githubusercontent.com/tockins/realize/v1/LICENSE)
|
[](https://raw.githubusercontent.com/oxequa/realize/v1/LICENSE)
|
||||||
[](https://github.com/tockins/realize-examples)
|
[](https://github.com/oxequa/realize-examples)
|
||||||
[](https://gitter.im/tockins/realize?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
[](https://gitter.im/oxequa/realize?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||||
[](https://goreportcard.com/report/github.com/tockins/realize)
|
[](https://goreportcard.com/report/github.com/oxequa/realize)
|
||||||
<!--[](#backers)
|
<!--[](#backers)
|
||||||
[](#sponsors)-->
|
[](#sponsors)-->
|
||||||
|
|
||||||
@ -45,7 +45,7 @@
|
|||||||
- Export logs and errors to an external file.
|
- Export logs and errors to an external file.
|
||||||
- Step-by-step project initialization.
|
- Step-by-step project initialization.
|
||||||
- Redesigned panel that displays build errors, console outputs and warnings.
|
- Redesigned panel that displays build errors, console outputs and warnings.
|
||||||
- Any suggestion? [Suggest an amazing feature! 🕺🏻](https://github.com/tockins/realize/issues/new)
|
- Any suggestion? [Suggest an amazing feature! 🕺🏻](https://github.com/oxequa/realize/issues/new)
|
||||||
|
|
||||||
## Supporters
|
## Supporters
|
||||||
<p align="center"><br>
|
<p align="center"><br>
|
||||||
@ -53,7 +53,7 @@
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
## Get started
|
## Get started
|
||||||
$ go get github.com/tockins/realize
|
$ go get github.com/oxequa/realize
|
||||||
|
|
||||||
## Commands List
|
## Commands List
|
||||||
|
|
||||||
@ -87,7 +87,7 @@ Some examples:
|
|||||||
$ realize start --name="realize" --build
|
$ realize start --name="realize" --build
|
||||||
$ realize start --path="realize" --run --no-config
|
$ realize start --path="realize" --run --no-config
|
||||||
$ realize start --install --test --fmt --no-config
|
$ realize start --install --test --fmt --no-config
|
||||||
$ realize start --path="/Users/username/go/src/github.com/tockins/realize-examples/coin/"
|
$ realize start --path="/Users/username/go/src/github.com/oxequa/realize-examples/coin/"
|
||||||
|
|
||||||
If you want, you can specify additional arguments for your project:
|
If you want, you can specify additional arguments for your project:
|
||||||
|
|
||||||
@ -126,7 +126,7 @@ Remove a project by its name
|
|||||||
|
|
||||||
*** there is no more a .realize dir, but only a .realize.yaml file ***
|
*** there is no more a .realize dir, but only a .realize.yaml file ***
|
||||||
|
|
||||||
For more examples check: [Realize Examples](https://github.com/tockins/realize-examples)
|
For more examples check: [Realize Examples](https://github.com/oxequa/realize-examples)
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
legacy:
|
legacy:
|
||||||
@ -197,8 +197,8 @@ For more examples check: [Realize Examples](https://github.com/tockins/realize-e
|
|||||||
errorOutputPattern: mypattern //custom error pattern
|
errorOutputPattern: mypattern //custom error pattern
|
||||||
|
|
||||||
## Support and Suggestions
|
## Support and Suggestions
|
||||||
💬 Chat with us [Gitter](https://gitter.im/tockins/realize)<br>
|
💬 Chat with us [Gitter](https://gitter.im/oxequa/realize)<br>
|
||||||
⭐️ Suggest a new [Feature](https://github.com/tockins/realize/issues/new)
|
⭐️ Suggest a new [Feature](https://github.com/oxequa/realize/issues/new)
|
||||||
|
|
||||||
## Backers
|
## Backers
|
||||||
|
|
||||||
|
|||||||
@ -446,6 +446,7 @@ type bintree struct {
|
|||||||
Func func() (*asset, error)
|
Func func() (*asset, error)
|
||||||
Children map[string]*bintree
|
Children map[string]*bintree
|
||||||
}
|
}
|
||||||
|
|
||||||
var _bintree = &bintree{nil, map[string]*bintree{
|
var _bintree = &bintree{nil, map[string]*bintree{
|
||||||
"assets": &bintree{nil, map[string]*bintree{
|
"assets": &bintree{nil, map[string]*bintree{
|
||||||
"app": &bintree{nil, map[string]*bintree{
|
"app": &bintree{nil, map[string]*bintree{
|
||||||
@ -528,4 +529,3 @@ func _filePath(dir, name string) string {
|
|||||||
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
||||||
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
|
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user