Update README.md
This commit is contained in:
parent
00ad94fbe4
commit
156450d10c
1 changed files with 16 additions and 2 deletions
18
README.md
18
README.md
|
@ -1,13 +1,27 @@
|
|||
# weather
|
||||
Some pythonscripts that get weather data from SMHI and calculates evapotranspiration.
|
||||
|
||||
Needs a mysql database:
|
||||
Create a user to run scripts:
|
||||
````
|
||||
useradd -s /usr/sbin/nologin -r -M -d /opt/weather weather
|
||||
````
|
||||
Clone repo:
|
||||
````
|
||||
git clone https://github.com/mickenordin/weather.git /opt/weather
|
||||
````
|
||||
Chown:
|
||||
````
|
||||
chown -R weather:weather /opt/weather
|
||||
````
|
||||
Create mysql database:
|
||||
|
||||
````
|
||||
mysql -e "CREATE DATABASE weather"
|
||||
mysql -e "CREATE USER 'weather'@'localhost' IDENTIFIED BY 'password'"
|
||||
mysql -e "GRANT ALL PRIVILEGES ON weather.* TO 'weather'@'localhost'"
|
||||
mysql weather < weather.sql
|
||||
````
|
||||
Configure and run:
|
||||
````
|
||||
vim weather.ini
|
||||
./getweather.py
|
||||
./aggregateweather.py
|
||||
|
|
Loading…
Add table
Reference in a new issue