This repository provides User Manual for setting up a Docker environment tailored for testing DGTD code. 
				
			 
			
		 
		
		
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
	
		
			
				
				
					
						
						
						
							|  | .PHONY: all docs
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | all: docs
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | docs: SHELL:=/bin/bash
 | 
						
						
						
							|  | docs:
 | 
						
						
						
							|  | 	if [ ! -d "docs/.venv" ]; then python3 -m venv "docs/.venv"; fi
 | 
						
						
						
							|  | 	( \
 | 
						
						
						
							|  | 		source docs/.venv/bin/activate;\
 | 
						
						
						
							|  | 		pip install -r docs/requirements.txt; \
 | 
						
						
						
							|  | 		sphinx-build -b html docs/source docs/build/html; \
 | 
						
						
						
							|  | 		deactivate \
 | 
						
						
						
							|  | 	)
 | 
						
						
						
							|  | 
 |