Skip to content
This repository was archived by the owner on May 17, 2022. It is now read-only.

Commit e7cedba

Browse files
committed
tests: add requirements file
1 parent 912f2f6 commit e7cedba

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v2
18+
- run: pip install -r ./requirements/pip.txt
1819
- run: ansible-playbook ./__tests__/test-tf-generation.yml
1920
release:
2021
needs: test

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
StackHead module for using Caddy as webserver.
44

5+
## System requirements
6+
7+
The following software is required to use this module:
8+
9+
* Python modules
10+
* passlib
11+
* bcrypt
12+
513
## Installation
614

715
Install it via `ansible-galaxy`:
@@ -10,14 +18,13 @@ Install it via `ansible-galaxy`:
1018
ansible-galaxy install getstackhead.stackhead_webserver_caddy
1119
```
1220

13-
In order to use Nginx with [StackHead](https://get.stackhead.io), set `stackhead__webserver` it in your inventory file:
21+
In order to use Caddy with [StackHead](https://get.stackhead.io), set `stackhead__webserver` it in your inventory file:
1422

1523
```yaml
16-
# inventory for integration test
1724
---
1825
all:
1926
vars:
20-
# Use Nginx as webserver
27+
# Use Caddy as webserver
2128
stackhead__webserver: getstackhead.stackhead_webserver_caddy
2229
hosts:
2330
myserver:

requirements/pip.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
passlib
2+
bcrypt

0 commit comments

Comments
 (0)