File tree 3 files changed +8
-9
lines changed
3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ You'll need the [Go][go] toolchain installed to try the demo program.
24
24
1 . See what to do next: ` ./randomizer-demo help `
25
25
26
26
The demo saves groups in a [ bbolt] [ bbolt ] database in the current directory,
27
- and outputs responses using [ Slack's message formatting ] [ format ] . This gives a
27
+ and outputs responses using [ Slack's "mrkdwn" format ] [ format ] . This gives a
28
28
taste of how the command works, and helps with testing.
29
29
30
30
[ go ] : https://golang.org/
38
38
39
39
- ` SERVERLESS.md ` is a detailed walkthrough for deployment on [ AWS
40
40
Lambda] [ lambda ] , Amazon's managed function as a service platform.
41
- - ` SERVERMORE.md ` is a high-level guide for setting up the ` randomizer-server `
42
- HTTP server, that assumes more background knowledge and/or willingness to
43
- dive into details of both standard server management and the randomizer
44
- implementation.
41
+ - ` SERVERMORE.md ` is a high-level guide for configuring the ` randomizer-server `
42
+ HTTP server. It assumes more background knowledge and/or willingness to dive
43
+ into the details of server management and the randomizer implementation.
45
44
46
45
[ lambda ] : https://aws.amazon.com/lambda/
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ Run `./hfc help` to learn more about additional commands that might be useful.
130
130
transformation to simplify the setup of the Lambda function.
131
131
- The template provisions the DynamoDB table in On-Demand capacity mode, which
132
132
isn't eligible for the AWS Free Tier. See the [ Read/Write Capacity
133
- Mode] [ capacity mode ] documentation for more details.
133
+ Mode] [ capacity mode ] documentation for details.
134
134
- The default configuration enables [ AWS X-Ray] [ x-ray ] tracing for the function
135
135
and its requests to DynamoDB. X-Ray is free for up to 100,000 traces per month
136
136
for every AWS account, and it's useful to see where each request is spending
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ This guide **doesn't** cover:
14
14
you wish to use a cloud provider for group storage or secrets.
15
15
16
16
If you're uncomfortable with these topics or the rest of this guide, and you
17
- aren't interested in learning them, the AWS Lambda setup might be preferable
18
- (see ` SERVERLESS.md ` ) .
17
+ aren't interested in learning them, you might prefer the AWS Lambda setup in
18
+ ` SERVERLESS.md ` .
19
19
20
20
In addition to the environment variables below, see ` randomizer-server -help `
21
21
for CLI flags that you may wish to set, like the bind address for the server
@@ -73,7 +73,7 @@ operational ease comparable to the AWS Lambda solution (though the randomizer
73
73
doesn't include infrastructure-as-code for it out of the box).
74
74
75
75
The Firestore backend requires a pre-existing database in a Google Cloud
76
- project (only Native mode been tested, but Datastore mode may work too).
76
+ project (only Native mode has been tested, but Datastore mode may work too).
77
77
Note that the randomizer expects to use the full database, and that only the
78
78
"(default)" database in each Google Cloud project is eligible for the Firestore
79
79
free tier.
You can’t perform that action at this time.
0 commit comments