######################################################################### # # This is the Wordpress theme we use on the main website. It was not # designed in-house; for better or worse, the department paid copious # amounts of money to an external vendor (D2). Travis had little-to-no # involvement with the design or code decisions made here - the dept. # admin at the time seemingly wanted to do some resume-building. # ######################################################################### This directory is managed via git. Changes can be deployed to vannevar by 1) ssh into vannevar 2) cd /var/www/cgi-bin/operations/advising/course_db/ 3) run "git pull" IMPORTANT: Note that the primary branch name has been changed to "main". It used to be managed via a "git push" procedure (see earlier notes below) but that is no longer the case - that was not the best solution when you potentially have multiple people who might need to touch the repo. - TLS 2024-09-13 ===================================== This directory is now managed via git. Do NOT work on it directly; instead, edit it in git and commit changes to the main repo in the usual way: git commit -a -m 'my update notes here' git push origin main To publish changes to the outward-facing website, use the push command: git push hedy To publish to the dev server (hedy-dev), the remote is "hedy-dev": git push hedy-dev We keep a copy of this on the department's github space as well: git push github Refer to our internal docs for more information on how this was set up: https://wp.ece.uw.edu/compdocs/managing-a-directory-using-git/ ======================================