Skip to content

Commit

Permalink
kasa-homecontrol -> kasa-homekit
Browse files Browse the repository at this point in the history
  • Loading branch information
joeshaw committed Jan 3, 2021
1 parent 0a7a9a9 commit 374dd9c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ COPY go.mod go.sum ./
RUN go mod download

COPY . .
RUN CGO_ENABLED=0 go build -installsuffix 'static' -o /usr/local/bin/kasa-homecontrol .
RUN CGO_ENABLED=0 go build -installsuffix 'static' -o /usr/local/bin/kasa-homekit .

FROM scratch

COPY --from=builder /etc/passwd /etc/group /etc/
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /usr/local/bin/kasa-homecontrol /usr/local/bin/
COPY --from=builder /usr/local/bin/kasa-homekit /usr/local/bin/

USER nobody:nobody
ENTRYPOINT ["/usr/local/bin/kasa-homecontrol"]
ENTRYPOINT ["/usr/local/bin/kasa-homekit"]
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

# kasa-homecontrol
# kasa-homekit

Apple HomeKit support for TP-Link Kasa smart home devices using
[HomeControl](https://github.com/brutella/hc).
[hc](https://github.com/brutella/hc).

Devices are detected and communicated with via the local network APIs.
This module does not use the cloud APIs and does not require you to log
Expand All @@ -19,11 +19,11 @@ an Apple TV or iPad, you can control the device remotely.

The tool can be installed with:

go get -u github.com/joeshaw/kasa-homecontrol
go get -u github.com/joeshaw/kasa-homekit

Then you can run the service:

kasa-homecontrol
kasa-homekit

The service will search for Kasa devices on your local network at
startup, and every 5 seconds afterward.
Expand All @@ -46,7 +46,7 @@ sure the code has been run through `gofmt`.

Copyright 2020 Joe Shaw

`kasa-homecontrol` is licensed under the MIT License. See the LICENSE
`kasa-homekit` is licensed under the MIT License. See the LICENSE
file for details.


2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/joeshaw/kasa-homecontrol
module github.com/joeshaw/kasa-homekit

go 1.14

Expand Down

0 comments on commit 374dd9c

Please sign in to comment.