Skip to content

Commit fe1fe72

Browse files
Merge pull request #25 from scala-exercises/jp-updates-readme
JP - Updates readme file
2 parents 002f344 + 60fb560 commit fe1fe72

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ allows remote evaluation of arbitrary Scala code.
88
# Run from sources
99

1010
```bash
11-
sbt run
11+
sbt "project evaluator-server" "run"
1212
```
1313

1414
# Authentication
1515

1616
The remote Scala eval uses [JWT](https://jwt.io/) to encode / decode tokens.
1717
The `secretKey` used for encoding/decoding is configurable as part of the service configuration in
18-
`src/main/resources/application.conf`.
18+
`server/src/main/resources/application.conf`.
1919

2020
Please change `secretKey` by overriding it or providing the `EVAL_SECRET_KEY` env var.
2121

@@ -32,7 +32,7 @@ In order to generate an auth token you may use the scala console and invoke
3232
the `org.scalaexercises.evaluator.auth#generateToken` like so
3333

3434
```
35-
sbt console
35+
sbt "project evaluator-server" "console"
3636
3737
scala> import org.scalaexercises.evaluator.auth._
3838

0 commit comments

Comments
 (0)