mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 09:12:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			450 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			450 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
- name: Install PIP basic dependencies
 | 
						|
  pip:
 | 
						|
    requirements: /var/www/note_kfet/requirements/base.txt
 | 
						|
    virtualenv: /var/www/note_kfet/env
 | 
						|
    virtualenv_command: /usr/bin/python3 -m venv
 | 
						|
  become_user: www-data
 | 
						|
 | 
						|
- name: Install PIP production dependencies
 | 
						|
  pip:
 | 
						|
    requirements: /var/www/note_kfet/requirements/production.txt
 | 
						|
    virtualenv: /var/www/note_kfet/env
 | 
						|
    virtualenv_command: /usr/bin/python3 -m venv
 | 
						|
  become_user: www-data
 |