Update README.md

master
Mikael Nordin 5 years ago committed by GitHub
parent 00ad94fbe4
commit 156450d10c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,13 +1,27 @@
# weather # weather
Some pythonscripts that get weather data from SMHI and calculates evapotranspiration. Some pythonscripts that get weather data from SMHI and calculates evapotranspiration.
Create a user to run scripts:
Needs a mysql database: ````
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 DATABASE weather"
mysql -e "CREATE USER 'weather'@'localhost' IDENTIFIED BY 'password'" mysql -e "CREATE USER 'weather'@'localhost' IDENTIFIED BY 'password'"
mysql -e "GRANT ALL PRIVILEGES ON weather.* TO 'weather'@'localhost'" mysql -e "GRANT ALL PRIVILEGES ON weather.* TO 'weather'@'localhost'"
mysql weather < weather.sql mysql weather < weather.sql
````
Configure and run:
````
vim weather.ini vim weather.ini
./getweather.py ./getweather.py
./aggregateweather.py ./aggregateweather.py

Loading…
Cancel
Save