Skip to content

Commit

Permalink
Merge pull request #3 from hartwork/new-project-home
Browse files Browse the repository at this point in the history
Apply new project home
  • Loading branch information
hartwork authored Oct 13, 2024
2 parents 36c0a3f + ff7a582 commit cbffb59
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 0 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,5 @@ updates:
directory: "/"
labels:
- "enhancement"
reviewers:
- "clarketm"
schedule:
interval: "weekly"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ ifdef version
@curl -XPOST \
-H "Authorization: token ${GITHUB_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
"https://api.github.com/repos/clarketm/${project}/releases" \
"https://api.github.com/repos/hartwork/${project}/releases" \
--data "{\"tag_name\": \"v${version}\",\"target_commitish\": \"master\",\"name\": \"v${version}\",\"draft\": false,\"prerelease\": false}"
endif

Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
> [!IMPORTANT]
> The wait-for-it project has a new home at https://github.com/hartwork/wait-for-it by now.
# [wait-for-it](https://wait-for-it.readthedocs.io/en/latest/)

[![PyPi release](https://img.shields.io/pypi/v/wait-for-it.svg)](https://pypi.org/project/wait-for-it/)
Expand All @@ -8,15 +11,14 @@
Wait for service(s) to be available before executing a command.

<br>
<a href="https://blog.travismclarke.com/project/wait-for-it/">
<a href="https://wait-for-it.readthedocs.io/en/latest/">
<p align="center"><img width="60%" src="https://raw.githubusercontent.com/clarketm/wait-for-it/master/hero.png" /></p>
</a>


`wait-for-it` is a script that will wait on the availability of one or more TCP services (i.e. `host:port`) before executing a user-defined command.
It is useful for synchronizing the spin-up of interdependent services, such as linked docker containers.

> Since [v2.0.0](https://github.com/clarketm/wait-for-it/releases/tag/v2.0.0), `wait-for-it` will return the exit code of the executed command(s).
> Since [v2.0.0](https://github.com/hartwork/wait-for-it/releases/tag/v2.0.0), `wait-for-it` will return the exit code of the executed command(s).
[Check out the wait-for-it docs](https://wait-for-it.readthedocs.io/en/latest/)

Expand Down Expand Up @@ -136,5 +138,5 @@ google is up

## License

MIT &copy; [**Travis Clarke**](https://blog.travismclarke.com/),
MIT &copy; [**Travis Clarke**](https://github.com/clarketm),
[Sebastian Pipping](https://blog.hartwork.org/)
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@

html_theme_options = {
"logo": "hero-sidebar.png",
"github_user": "clarketm",
"github_user": "hartwork",
"github_repo": "wait-for-it",
"github_type": "star",
"github_banner": "forkme_right_red_aa0000.png",
Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Version |version|
`wait-for-it` is a script that will wait on the availability of one or more TCP services (i.e. `host:port`) before executing a user-defined command.
It is useful for synchronizing the spin-up of interdependent services, such as linked docker containers.

> Since [v2.0.0](https://github.com/clarketm/wait-for-it/releases/tag/v2.0.0), `wait-for-it` will return the exit code of the executed command(s).
> Since [v2.0.0](https://github.com/hartwork/wait-for-it/releases/tag/v2.0.0), `wait-for-it` will return the exit code of the executed command(s).
## Installation

Expand Down Expand Up @@ -144,5 +144,5 @@ google is up

## License

MIT © [**Travis Clarke**](https://blog.travismclarke.com/),
MIT © [**Travis Clarke**](https://github.com/clarketm),
[Sebastian Pipping](https://blog.hartwork.org/)
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
setuptools.setup(
name="wait-for-it",
version=__version__,
author="Travis Clarke",
author_email="[email protected]",
author="Travis Clarke, Sebastian Pipping",
author_email="[email protected], [email protected]",
description="Wait for service(s) to be available before executing a command.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/clarketm/wait-for-it",
url="https://github.com/hartwork/wait-for-it",
packages=setuptools.find_packages(),
python_requires=">=3.8",
setup_requires=["setuptools>=38.6.0"], # for long_description_content_type
Expand Down

0 comments on commit cbffb59

Please sign in to comment.