Skip to content

Commit a2a3003

Browse files
chore: docs and resolver in sample (#114)
* chore: docs and resolver in sample * resolver readme * Update src/main/g8/build.sbt Co-authored-by: Johan Andrén <johan@markatta.com> * update README --------- Co-authored-by: Johan Andrén <johan@markatta.com>
1 parent d50b4af commit a2a3003

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
1515
build-test:
1616
if: github.repository == 'akka/akka-http-quickstart-scala.g8'
17-
runs-on: ubuntu-22.04
17+
runs-on: Akka-Default
1818

1919
steps:
2020
- name: Checkout

src/main/g8/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Sources in the sample:
99
* `UserRegistry.scala` -- the actor which handles the registration requests
1010
* `JsonFormats.scala` -- converts the JSON data from requests into Scala types and from Scala types into JSON responses
1111

12+
## Configure the resolver
13+
14+
> The Akka dependencies are available from Akka’s secure library repository. To access them you need to use a secure, tokenized URL as specified at https://account.akka.io/token.
15+
1216
## Interacting with the sample
1317

1418
After starting the sample with `sbt run` the following requests can be made:

src/main/g8/build.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
lazy val akkaHttpVersion = "$akka_http_version$"
22
lazy val akkaVersion = "$akka_version$"
33

4-
resolvers += "Akka library repository".at("https://repo.akka.io/maven")
4+
// Replace this with your tokenized resolver URL, see README.md
5+
resolvers += "Akka library repository".at("https://repo.akka.io/maven/github_actions")
56

67
// Run in a separate JVM, to make sure sbt waits until all threads have
78
// finished before returning.

0 commit comments

Comments
 (0)