mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-10-31 23:04:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			591 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			591 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| crond -l 0
 | |
| 
 | |
| python manage.py migrate
 | |
| python manage.py update_index
 | |
| python manage.py runmailer_pg &
 | |
| 
 | |
| nginx
 | |
| 
 | |
| if [ "$TFJM_STAGE" = "prod" ]; then
 | |
| gunicorn -b 0.0.0.0:8000 \
 | |
|         --workers=2 \
 | |
|         --threads=4 \
 | |
|         --worker-class=uvicorn.workers.UvicornWorker \
 | |
|         tfjm.asgi \
 | |
|         --access-logfile '-' \
 | |
|         --error-logfile '-'
 | |
| else
 | |
| gunicorn -b 0.0.0.0:8000 \
 | |
|         --workers=2 \
 | |
|         --threads=4 \
 | |
|         --worker-class=uvicorn.workers.UvicornWorker \
 | |
|         tfjm.asgi \
 | |
|         --access-logfile '-' \
 | |
|         --error-logfile '-' \
 | |
|         --reload
 | |
| fi
 |