cron
Use git@github.com:EP-Visual-Design/covid19-dashboard.git
to get fix bin/cron-parse.sh
# Setup cron task to run every morning
#
env EDITOR=nano crontab -e
# Show cron task
#
crontab -l
...
15 6 * * * bash -l /Users/epdev/Desktop/covid19-dashboard/bin/cron-parse.sh
#
# 6:15am task to run bin/cron-parse.sh
# ssh settings to get git@githumb.com access to work
#
more ~/.ssh/config
Host *
Protocol 2
TCPKeepAlive yes
ServerAliveInterval 60
Host github.com
User git
Hostname github.com
PreferredAuthentications publickey
IdentitiesOnly yes
IdentityFile ~/.ssh/github_rsa
# ssh to create ~/.ssh/github_rsa
#
ssh-keygen -t rsa -b 4096 -C "your@email.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/epdev/.ssh/id_rsa): .ssh/github_rsa
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in .ssh/github_rsa.
Your public key has been saved in .ssh/github_rsa.pub.
...