Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/genebean/piweatherrock-webconfig
A web interface for configuring PiWeatherRock
https://github.com/genebean/piweatherrock-webconfig
Last synced: 14 days ago
JSON representation
A web interface for configuring PiWeatherRock
- Host: GitHub
- URL: https://github.com/genebean/piweatherrock-webconfig
- Owner: genebean
- License: mit
- Created: 2020-05-07T03:16:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-28T06:49:10.000Z (over 4 years ago)
- Last Synced: 2024-10-03T23:23:47.523Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 1000 KB
- Stars: 0
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# piweatherrock-webconfig
![GitHub](https://img.shields.io/github/license/genebean/piweatherrock-webconfig)
![PyPI](https://img.shields.io/pypi/v/piweatherrock-webconfig)This is the source code for the `piweatherrock-webconfig` Python module. Its provides a web interface for configuring [PiWeatherRock](https://piweatherrock.technicalissues.us).
- [Usage](#usage)
- [Many thanks](#many-thanks)
- [Release process](#release-process)## Usage
This is a standalone package that just needs to know where the config file for PiWeatherRock is located. For example, if you keep the config file in the home directory of the default user on a Raspberry Pi, you'd call it like this:
```bash
pwr-webconfig -c /home/pi/piweatherrock.json
```## Many thanks
The code for this was contributed by [@metaMMA](https://github.com/metaMMA). It used to be embedded in the main PiWeatherRock code base but has now been moved here so that it can be installed via pip.
## Release process
- edit `version.py` according to the types of changes made
- `python3 setup.py sdist bdist_wheel`
- `tar tzf dist/piweatherrock-*.tar.gz`
- `twine check dist/*`
- [optional] `twine upload --repository-url https://test.pypi.org/legacy/ dist/*`
- `twine upload dist/*`
- Create a git tag and push it