Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thanhtunguet/smarthomepccontrol
Turn your PC on or off using Smart Home
https://github.com/thanhtunguet/smarthomepccontrol
Last synced: 23 days ago
JSON representation
Turn your PC on or off using Smart Home
- Host: GitHub
- URL: https://github.com/thanhtunguet/smarthomepccontrol
- Owner: thanhtunguet
- Created: 2024-04-19T01:58:59.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-09-07T14:09:52.000Z (4 months ago)
- Last Synced: 2024-09-07T15:39:10.532Z (4 months ago)
- Language: C#
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SmartHomePCControl
------------------Control your Home PC using Google Smart Home assistant
## Installation
### Quick setup --- if you've done this kind of thing before
[ Set up in Desktop](x-github-client://openRepo/https://github.com/thanhtunguet/SmartHomePCControl)
### ...or create a new repository on the command line
```sh
echo "# SmartHomePCControl" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:thanhtunguet/SmartHomePCControl.git
git push -u origin main
```### ...or push an existing repository from the command line
```sh
git remote add origin [email protected]:thanhtunguet/SmartHomePCControl.git
git branch -M main
git push -u origin main
```### ...or import code from another repository
You can initialize this repository with code from a Subversion, Mercurial, or TFS project.
[Import code](https://github.com/thanhtunguet/SmartHomePCControl/import)
## Usage
Running the project using docker compose
```yml
version: '3'
services:
smart-home-pc:
image: thanhtunguet/smart-home-pc:latest
network_mode: host
container_name: smart-home-pc
command: dotnet SmartHomePCControl.dll --urls http://0.0.0.0:5000
```