Skip to content

Commit 34f76ee

Browse files
committed
README: cleanup.
- remove GH token references - remove clever app references
1 parent d86b473 commit 34f76ee

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,22 @@ See [Service Discovery](https://github.com/Clever/infra-docs/blob/master/deploy/
1111
Assuming discovery v0.1.0 is being installed:
1212

1313
```sh
14-
pip install git+ssh://github.com/Clever/discovery-python.git@v0.1.0
14+
pip install git+https://github.com/Clever/discovery-python.git@v0.1.0
1515
```
1616

1717
### setup.py
1818

1919
```python
2020
from setuptools import setup
2121

22-
GITHUB_TOKEN = os.environ['GITHUB_API_TOKEN']
23-
2422
# Assuming discovery v0.1.0 is being installed:
2523
setup(
2624

2725
# ...
2826

2927
install_requires=['discovery==0.1.0'],
3028
dependency_links=[
31-
'https://{}@github.com/Clever/discovery-python/tarball/v0.1.0#egg=discovery-0.1.0'.format(GITHUB_TOKEN)
29+
'https://github.com/Clever/discovery-python/tarball/v0.1.0#egg=discovery-0.1.0'
3230
],
3331

3432
# ...
@@ -76,7 +74,8 @@ Currently, `discovery-{go,node,python}` looks for environment variables with the
7674
SERVICE_{SERVICE_NAME}_{EXPOSE_NAME}_{PROTO,HOST,PORT}
7775
```
7876
79-
These environment variables are autogenerated by [fab](http://github.com/Clever/fabulaws) and [catapult](http://github.com/Clever/catapult) during app deployment. Three env-vars are created for each app listed in the `dependencies` section of caller's launch yaml.
77+
These environment variables are autogenerated by our deployment tooling.
78+
Three env-vars are created for each app listed in the `dependencies` section of caller's launch yaml.
8079
8180
For example, if an app lists `district-authorizations` as a dependency, fab and catapult will generate this env-vars triplet:
8281

0 commit comments

Comments
 (0)