mirror of
https://github.com/weewx/weewx.git
synced 2026-04-18 00:26:57 -04:00
38 lines
700 B
Plaintext
38 lines
700 B
Plaintext
basic - a very basic weeWX skin
|
|
Copyright 2014 Matthew Wall
|
|
|
|
This example illustrates how to implement a skin and package it so that it
|
|
can be installed by the extension installer.
|
|
|
|
|
|
Installation instructions
|
|
|
|
1) install the extension
|
|
|
|
wee_extension --install=/home/weewx/examples/basic
|
|
|
|
2) restart weeWX
|
|
|
|
sudo /etc/init.d/weewx stop
|
|
sudo /etc/init.d/weewx start
|
|
|
|
|
|
Manual installation instructions
|
|
|
|
1) copy files to the weeWX skins directory
|
|
|
|
cp -rp skins/basic /home/weewx/skins
|
|
|
|
2) in the weeWX configuration file, add a report
|
|
|
|
[StdReport]
|
|
...
|
|
[[basic]]
|
|
skin = basic
|
|
HTML_ROOT = public_html/basic
|
|
|
|
3) restart weeWX
|
|
|
|
sudo /etc/init.d/weewx stop
|
|
sudo /etc/init.d/weewx start
|