Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sivel/ansible-template-ui
Web UI for testing ansible templates
https://github.com/sivel/ansible-template-ui
Last synced: 12 days ago
JSON representation
Web UI for testing ansible templates
- Host: GitHub
- URL: https://github.com/sivel/ansible-template-ui
- Owner: sivel
- License: apache-2.0
- Created: 2017-10-18T16:48:10.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-14T15:12:20.000Z (11 months ago)
- Last Synced: 2024-10-23T07:17:58.660Z (21 days ago)
- Language: Python
- Homepage: https://ansible.sivel.net/test/
- Size: 33.2 KB
- Stars: 123
- Watchers: 4
- Forks: 33
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```