Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sivel/ansible-template-ui

Web UI for testing ansible templates
https://github.com/sivel/ansible-template-ui

Last synced: about 2 months ago
JSON representation

Web UI for testing ansible templates

Awesome Lists containing this project

README

        

# ansible-template-ui
Web UI for testing ansible templates

## Docker Container

### Pull

```
docker pull sivel/ansible-template-ui:devel
```

### Build

```
docker build -t ansible-template-ui:devel docker/devel
```

## Web App

### Dev

```
python -m ansible_template_ui
```

### Production

#### PEX

```
pip install pex
./build_pex.sh
ansible_template_ui.pex -k gevent ansible_template_ui:app
```

#### Without PEX

```
pip install -r requirements.txt -r deploy-requirements.txt
gunicorn -k gevent ansible_template_ui:app
```