21 lines
552 B
YAML
21 lines
552 B
YAML
|
---
|
||
|
|
||
|
- hosts: managed
|
||
|
pre_tasks:
|
||
|
- name: Shutdown the running XPPL for the deployment.
|
||
|
become: true
|
||
|
supervisorctl:
|
||
|
name: 'xppl:'
|
||
|
state: stopped
|
||
|
roles:
|
||
|
- role: git # Clone the project source
|
||
|
- role: pipenv # Install Python dependencies
|
||
|
- role: env # Configure the application environment
|
||
|
- role: nginx # Setup the Nginx configuration
|
||
|
post_tasks:
|
||
|
- name: Start back up the XPPL after the deployment.
|
||
|
become: true
|
||
|
supervisorctl:
|
||
|
name: 'xppl:'
|
||
|
state: stopped
|