Steps to Complete a Pull
Once an Airtable update has been completed the following steps must be completed
Ssh onto the droplet as a user that has sudo privileges and then run the following commands
sudo -i
cd /root
./create_json_files.sh
Push the new changes to git (if you have issues pushing to git see troubleshooting below)
cd /var/www/covercrop.tools/covercrops
git add .
git commit -m “<a commit message>”
git push
Pull the changes to your local machine
git checkout master
git pull
Build the changes on your local machine and push them to github
npm run build
git add .
git commit -m “<a commit message>”
git push
Ssh onto the droplet and pull the new build files to the server (if you have issues pulling from git see troubleshooting below)
git pull
The DST is now updated!