/
Steps to Complete a Pull
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!
, multiple selections available,
Related content
Overview of an Airtable Pull
Overview of an Airtable Pull
More like this
Deployment
Deployment
More like this
App 1 prod setup for super users
App 1 prod setup for super users
More like this
Selector Planning
Selector Planning
More like this
create_json_files.sh
create_json_files.sh
More like this
Repository Cleanup
Repository Cleanup
More like this