8 lines
147 B
Makefile
8 lines
147 B
Makefile
.PHONY: deploy
|
|
deploy:
|
|
rsync -av ./ bert:/srv/www/home.chandlerswift.com/cities/
|
|
|
|
.PHONY: fetch_data
|
|
fetch_data: get_data.py
|
|
python3 get_data.py
|