izanami 0.14.0 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/.env.development +1 -1
- data/README.md +2 -2
- data/lib/izanami/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NzNiMmMzM2U2OGMzOTcxMWRhNWM1YmZlZDQyODJlNWRkNWIwNGVhMg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZTEyNWZhZDI3MTViNmQ0ZTQ2YmEwOGRlYWE1OWZhZDRiY2E0YzBiMw==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
OGJmYzMxOTc1NTViZTQ3YzcyYjRmYTRiYTA1NjlmNDYyMTU4MWJmMGU2MDM5
|
|
10
|
+
ODBmMGI5ZDc1YzdmMDQ5MGY2M2EwZDIxM2Y5OTRkMTJkMWNlYmIwMGNhODcz
|
|
11
|
+
MjBkMzI5ZjU5OTkyY2UxZTliZWFjOWE2OGM3YjNlNmEwYjdkNGQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NDJmNjk4MzJjMDQyZTY2YmJiZmI3NzYxODk0YTU2YWNhZjFmMzk0YmFkMjNk
|
|
14
|
+
ODEwN2QyYzc1ZTUzNTMwMjQ0NjU3NmIyYzA0YWUwMWE3OWQ0NTEwYzAzNzU5
|
|
15
|
+
ZWJhZmI2MDY2MWZlYWJhODA4YzI3YWI0YzkxZmI3NjI0OTBmNzY=
|
data/.env.development
CHANGED
data/README.md
CHANGED
|
@@ -54,7 +54,7 @@ Izanami configuration is handled via environment variables:
|
|
|
54
54
|
* `IZANAMI_PORT`: Web app port (defaults to `4567`).
|
|
55
55
|
* `IZANAMI_USER`: User for the HTTP Basic Authentication (e.g: `izanami`).
|
|
56
56
|
* `IZANAMI_PASSWORD`: Password for the HTTP Basic Authentication (e.g: `$3cr3t`).
|
|
57
|
-
* `
|
|
57
|
+
* `IZANAMI_REDIS_URL`: Redis configuration in URL format (defaults to `redis://127.0.0.1:6379/0`).
|
|
58
58
|
* `IZANAMI_SANDBOX`: Path to the directory with the capistrano recipes.
|
|
59
59
|
* `IZANAMI_WATCHDOG_SLEEP_TIME`: The time the watchdog sleeps before update the sandbox git repository (default to 300 seconds).
|
|
60
60
|
|
|
@@ -97,7 +97,7 @@ This is an example for an `.env` file:
|
|
|
97
97
|
IZANAMI_PORT=8899
|
|
98
98
|
IZANAMI_USER=izanami
|
|
99
99
|
IZANAMI_PASSWORD=supersecretpass
|
|
100
|
-
|
|
100
|
+
IZANAMI_REDIS_URL=redis://redis.provider.com:6379/0
|
|
101
101
|
IZANAMI_SANDBOX=/var/recipes/
|
|
102
102
|
IZANAMI_WATCHDOG_SLEEP_TIME=600
|
|
103
103
|
|
data/lib/izanami/version.rb
CHANGED