 9bdcbe0447
			
		
	
	9bdcbe0447
	
	
	
		
			
			Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
 | |
| VAGRANTFILE_API_VERSION = "2"
 | |
| 
 | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
 | |
|   config.vm.box = "hashicorp/precise64"
 | |
|   config.vm.provision "shell", inline: "mkdir -p /home/vagrant/go"
 | |
|   config.vm.synced_folder ".", "/home/vagrant/go/src/github.com/cloudfoundry/gosigar"
 | |
|   config.vm.provision "shell", inline: "chown -R vagrant:vagrant /home/vagrant/go"
 | |
|   install_go = <<-BASH
 | |
|   set -e
 | |
| 
 | |
| if [ ! -d "/usr/local/go" ]; then
 | |
| 	cd /tmp && wget https://storage.googleapis.com/golang/go1.3.3.linux-amd64.tar.gz
 | |
| 	cd /usr/local
 | |
| 	tar xvzf /tmp/go1.3.3.linux-amd64.tar.gz
 | |
| 	echo 'export GOPATH=/home/vagrant/go; export PATH=/usr/local/go/bin:$PATH:$GOPATH/bin' >> /home/vagrant/.bashrc
 | |
| fi
 | |
| export GOPATH=/home/vagrant/go
 | |
| export PATH=/usr/local/go/bin:$PATH:$GOPATH/bin
 | |
| /usr/local/go/bin/go get -u github.com/onsi/ginkgo/ginkgo
 | |
| /usr/local/go/bin/go get -u github.com/onsi/gomega;
 | |
| BASH
 | |
|   config.vm.provision "shell", inline: 'apt-get install -y git-core'
 | |
|   config.vm.provision "shell", inline: install_go
 | |
| end
 |