File tree 6 files changed +6
-6
lines changed
crawlers/cli/src/main/kotlin/org/rm3l/devfeed/crawlers/cli
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ You can then access the GraphiQL browser by heading to http://localhost:8080/gra
79
79
2 . Run the Backend GraphQL API
80
80
81
81
``` sh
82
- java -jar backend/api/build/libs/dev-feed-api-1.13 .0.jar
82
+ java -jar backend/api/build/libs/dev-feed-api-2.0 .0.jar
83
83
```
84
84
85
85
You can then access the GraphiQL browser by heading to http://localhost:8080/graphiql
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ RUN ./gradlew build
43
43
44
44
FROM eclipse-temurin:19
45
45
46
- COPY --from=builder /dev-feed-backend/api/build/libs/dev-feed-api-1.13 .0.jar /app.jar
46
+ COPY --from=builder /dev-feed-backend/api/build/libs/dev-feed-api-2.0 .0.jar /app.jar
47
47
48
48
# /graphql and /graphiql endpoints
49
49
EXPOSE 8080
Original file line number Diff line number Diff line change 1
- web : java -Dserver.port=$PORT -Dmanagement.port=$PORT -Dmanagement.security.enabled=true $JAVA_OPTS -Dcrawlers.task.fetch-articles.max-age-days=90 -jar api/build/libs/dev-feed-api-1.13 .0.jar
1
+ web : java -Dserver.port=$PORT -Dmanagement.port=$PORT -Dmanagement.security.enabled=true $JAVA_OPTS -Dcrawlers.task.fetch-articles.max-age-days=90 -jar api/build/libs/dev-feed-api-2.0 .0.jar
Original file line number Diff line number Diff line change 25
25
26
26
set -eux
27
27
28
- docker image build -t org.rm3l/dev-feed-api:1.13 .0 .
28
+ docker image build -t org.rm3l/dev-feed-api:2.0 .0 .
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ import picocli.CommandLine.ParameterException
34
34
@CommandLine.Command (
35
35
description = [" Fetch articles" ],
36
36
mixinStandardHelpOptions = true ,
37
- version = [" 1.13 .0" ],
37
+ version = [" 2.0 .0" ],
38
38
subcommands = [DevFeedCrawlerCliRdbms ::class , DevFeedCrawlerCliMongo ::class ])
39
39
class DevFeedCrawlerCliRunner : Runnable {
40
40
Original file line number Diff line number Diff line change 26
26
set -eux
27
27
28
28
docker container rm -f dev-feed-api > /dev/null 2>&1 || true
29
- docker container run -d --rm --name dev-feed-api -p 8080:8080 -p 8081:8081 -t org.rm3l/dev-feed-api:1.13 .0
29
+ docker container run -d --rm --name dev-feed-api -p 8080:8080 -p 8081:8081 -t org.rm3l/dev-feed-api:2.0 .0
30
30
docker container logs -f dev-feed-api
You can’t perform that action at this time.
0 commit comments