mirror of
				https://github.com/fspc/workstand.git
				synced 2025-10-31 16:35:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			445 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			445 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| sudo: yes
 | |
| # Application settings
 | |
| app_name: bikeshop
 | |
| app_user: "{{ app_name }}"
 | |
| webapps_dir: /srv
 | |
| settings_module: bikeshop.settings.{{ group_names[0] }}
 | |
| app_dir: "{{ webapps_dir }}/{{ app_name }}"
 | |
| venv: /opt/venv/{{ app_name }}-{{ group_names[0] }}
 | |
| 
 | |
| db_name: "{{ app_name }}_development"
 | |
| db_user: "{{ app_name }}"
 | |
| app_port: 8475
 | |
| 
 | |
| db_user_password: "{{ secret_db_user_password }}"
 | |
| secret_db_user_password: password
 | |
| app_domain_name: bikeshop.local |