diff options
author | Wolfy-J <[email protected]> | 2019-01-11 16:23:25 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-01-11 16:23:25 +0300 |
commit | a50c990c2b46723a8d5811170d42129ab26ff219 (patch) | |
tree | 07ec6e943c51bd453bde864b02081e424e7132c1 | |
parent | 29f1ba679e6ded4b8a2d21c5dbc7747b358922fc (diff) |
quickbuilds
-rw-r--r-- | .rr.build | 20 | ||||
-rw-r--r-- | build/rr-build | 2 |
2 files changed, 1 insertions, 21 deletions
diff --git a/.rr.build b/.rr.build deleted file mode 100644 index f5d171f1..00000000 --- a/.rr.build +++ /dev/null @@ -1,20 +0,0 @@ -{ - "packages": [ - "github.com/spiral/roadrunner/service/env", - "github.com/spiral/roadrunner/service/http", - "github.com/spiral/roadrunner/service/rpc", - "github.com/spiral/roadrunner/service/static", - "github.com/spiral/php-grpc" - ], - "commands": [ - "github.com/spiral/roadrunner/cmd/rr/http", - "github.com/spiral/php-grpc/cmd/rr-grpc/grpc" - ], - "register": [ - "rr.Container.Register(env.ID, &env.Service{})", - "rr.Container.Register(rpc.ID, &rpc.Service{})", - "rr.Container.Register(http.ID, &http.Service{})", - "rr.Container.Register(static.ID, &static.Service{})", - "rr.Container.Register(grpc.ID, &grpc.Service{})" - ] -}
\ No newline at end of file diff --git a/build/rr-build b/build/rr-build index ee3206f5..7b54f66b 100644 --- a/build/rr-build +++ b/build/rr-build @@ -9,7 +9,7 @@ use Spiral\RoadRunner\QuickBuild\Builder; require_once "src/Builder.php"; // load build config -$version = $argv[1] ?? "quickbuild"; +$version = $argv[1] ?? "local"; // load build config $config = $argv[2] ?? __DIR__ . "/.build.json"; |