Update 0x-launch-kit repo name to include -backend

This commit is contained in:
Fabio Berger
2019-05-16 16:30:48 -03:00
parent 2d3fe02cd7
commit c742cdfe5c
5 changed files with 10 additions and 10 deletions

View File

@@ -312,7 +312,7 @@ pip install -e .[dev]
### Test
Tests depend on a running instance of 0x-launch-kit, backed by a Ganache node with the 0x contracts deployed in it. For convenience, a docker-compose file is provided that creates this environment. And a shortcut is provided to interface with that file: `./setup.py start_test_relayer` will start those services. With them running, the tests can be run with `./setup.py test`. When you're done with testing, you can `./setup.py stop_test_relayer`.
Tests depend on a running instance of 0x-launch-kit-backend, backed by a Ganache node with the 0x contracts deployed in it. For convenience, a docker-compose file is provided that creates this environment. And a shortcut is provided to interface with that file: `./setup.py start_test_relayer` will start those services. With them running, the tests can be run with `./setup.py test`. When you're done with testing, you can `./setup.py stop_test_relayer`.
### Clean

View File

@@ -54,7 +54,7 @@ class TestPublishCommand(distutils.command.build_py.build_py):
class StartTestRelayerCommand(distutils.command.build_py.build_py):
"""Custom command to boot up a local 0x-launch-kit in docker."""
"""Custom command to boot up a local 0x-launch-kit-backend in docker."""
description = "Run launch-kit daemon to support tests."
@@ -79,7 +79,7 @@ class StartTestRelayerCommand(distutils.command.build_py.build_py):
class StopTestRelayerCommand(distutils.command.build_py.build_py):
"""Custom command to tear down the local 0x-launch-kit test relayer."""
"""Custom command to tear down the local 0x-launch-kit-backend test relayer."""
description = "Tear down launch-kit daemon."

View File

@@ -21,8 +21,8 @@ Install the package with pip::
To interact with a 0x Relayer, you need the HTTP endpoint of the Relayer you'd
like to connect to (eg https://api.radarrelay.com/0x/v2).
For testing one can use the `0x-launch-kit
<https://github.com/0xProject/0x-launch-kit#table-of-contents/>`_ to host
For testing one can use the `0x-launch-kit-backend
<https://github.com/0xProject/0x-launch-kit-backend#table-of-contents/>`_ to host
orders locally. The examples below assume that this server is running locally
and listening on port 3000, so the Relayer URL they use is
`http://localhost:3000`:code:.
@@ -45,8 +45,8 @@ To replicate this setup, one could run the following commands:
0xorg/launch-kit-ci
(Note: This will only work on Linux, because `--network host`:code: only works
on Linux. For other platforms one would have to clone `the 0x-launch-kit
repository <https://github.com/0xProject/0x-launch-kit>`_ and build and start
on Linux. For other platforms one would have to clone `the 0x-launch-kit-backend
repository <https://github.com/0xProject/0x-launch-kit-backend>`_ and build and start
the server.)
Configure and create an API client instance