22 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| sync_prod_flatpages: venv_check 
 | |
| 	@echo Downloading current version of flatpages from mamweb-prod.
 | |
| 	ssh mam-web@gimli.ms.mff.cuni.cz \
 | |
| 	"cd /akce/mam/www/mamweb-prod; . env/bin/activate; ./manage.py dumpdata flatpages --indent=2 > flat.json; ./fix_json.py flat.json flat_fixed.json"
 | |
| 	rsync -ave ssh mam-web@gimli.ms.mff.cuni.cz:/akce/mam/www/mamweb-prod/flat_fixed.json data/flat.json
 | |
| 	@echo "Applying downloaded flatpages."
 | |
| 	./manage.py loaddata data/flat.json
 | |
| 	@echo "Done."
 | |
| 
 | |
| # Sync (with drop) test database with production database
 | |
| sync_test_db_aggressive:
 | |
| 	@if [ ${USER} != "mam-web" ]; then echo "Only possible by user mam-web"; exit 1; fi
 | |
| 	pg_dump mam_test > dump-test-`date +"%Y%m%d_%H%M"`.sql
 | |
| 	pg_dump -Fc mam_prod > dump-prod.sql
 | |
| 	@# I am not sure which shell is used, so I am calling bash to make sure
 | |
| 	psql mam_test -c 'DROP OWNED BY "mam-web";'
 | |
| 	pg_restore -c --if-exists -d mam_test dump-prod.sql
 | |
| 	rm dump-prod.sql
 | |
| 	psql mam_test -c "UPDATE django_site SET name='MaMweb (test)', domain='mam-test.ks.matfyz.cz' WHERE id=1"
 | |
| 	@echo Done.
 | |
| 
 | |
| sync_test: sync_test_media sync_test_db_aggressive
 | 
