ufo 2.0.2 → 2.0.3
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +1 -1
- data/lib/starter_project/ufo/task_definitions.rb +9 -0
- data/lib/ufo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8350618d437b189a1331609c80641170530d0cd1
|
|
4
|
+
data.tar.gz: aa3c8b0c2699d209e31dfbe23e4ac623c955b06b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f08a954dc92b3b019412aef4218824e790d6486d8d25dc80ebf157ea1d5a9e169a1d377c0ad9568e2409c5e2f834f31ccae045689549d970b3e2f572697b0fae
|
|
7
|
+
data.tar.gz: a78095ecfca8bf72ff93bbd65f0bf5609766dbfb5e6b432edd4390c8aa09f194ab20c6733eed9ca0716dea1d8cc86bf09c03d838eaecfd6aa2033a66318fba8d
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [2.0.3]
|
|
7
|
+
* add aws log group as a comment in the starter project
|
|
8
|
+
|
|
6
9
|
## [2.0.2]
|
|
7
10
|
* ufo init: update cli help
|
|
8
11
|
|
data/Gemfile.lock
CHANGED
|
@@ -15,6 +15,9 @@ task_definition "<%= @app %>-web" do
|
|
|
15
15
|
family: task_definition_name,
|
|
16
16
|
name: "web",
|
|
17
17
|
container_port: helper.dockerfile_port,
|
|
18
|
+
# uncomment out to set the log group
|
|
19
|
+
# awslogs_group: "<%= @app %>-web",
|
|
20
|
+
# awslogs_stream_prefix: "<%= @app %>",
|
|
18
21
|
command: ["bin/web"]
|
|
19
22
|
)
|
|
20
23
|
end
|
|
@@ -24,6 +27,9 @@ task_definition "<%= @app %>-worker" do
|
|
|
24
27
|
variables(
|
|
25
28
|
family: task_definition_name,
|
|
26
29
|
name: "worker",
|
|
30
|
+
# uncomment out to set the log group
|
|
31
|
+
# awslogs_group: "<%= @app %>-worker",
|
|
32
|
+
# awslogs_stream_prefix: "<%= @app %>",
|
|
27
33
|
command: ["bin/worker"]
|
|
28
34
|
)
|
|
29
35
|
end
|
|
@@ -33,6 +39,9 @@ task_definition "<%= @app %>-clock" do
|
|
|
33
39
|
variables(
|
|
34
40
|
family: task_definition_name,
|
|
35
41
|
name: "clock",
|
|
42
|
+
# uncomment out to set the log group
|
|
43
|
+
# awslogs_group: "<%= @app %>-clock",
|
|
44
|
+
# awslogs_stream_prefix: "<%= @app %>",
|
|
36
45
|
command: ["bin/clock"]
|
|
37
46
|
)
|
|
38
47
|
end
|
data/lib/ufo/version.rb
CHANGED