-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(shared): move api folder into runnable and reset build settings…
… for dockerRepository and version.sbt (#152) * chore(shared): move API folder for mercury and prism-agent into service / runnable folder * build(mercury): revert dockerRepository change back to ghcr.io and reset version to next snapshot version 0.3.0-SNAPSHOT * chore(mercury): updated README to be clear why API folder moved
- Loading branch information
davidpoltorak-io
authored
Nov 23, 2022
1 parent
14906a6
commit dc641b1
Showing
11 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ inThisBuild( | |
// Custom keys | ||
val apiBaseDirectory = | ||
settingKey[File]("The base directory for Castor API specifications") | ||
ThisBuild / apiBaseDirectory := baseDirectory.value / ".." / "api" | ||
ThisBuild / apiBaseDirectory := baseDirectory.value / "api" | ||
ThisBuild / resolvers += Resolver.githubPackages("input-output-hk", "atala-prism-building-blocks") | ||
|
||
lazy val V = new { | ||
|
@@ -88,7 +88,7 @@ lazy val mediator = project | |
githubTokenSource := TokenSource.Environment("ATALA_GITHUB_TOKEN"), | ||
// ### Build Docker Image ### | ||
Docker / maintainer := "[email protected]", | ||
Docker / dockerRepository := Some("atala-prism.io"), | ||
Docker / dockerRepository := Some("ghcr.io"), | ||
Docker / dockerUsername := Some("input-output-hk"), | ||
Docker / githubOwner := "atala-prism-building-blocks", | ||
Docker / dockerUpdateLatest := true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ThisBuild / version := "0.1.0" | ||
ThisBuild / version := "0.3.0-SNAPSHOT" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,13 @@ openapi: 3.0.1 | |
info: | ||
title: PrismAgent OpenAPI specification | ||
description: OpenAPI specification for Decentralized Identifiers (DID) Operations | ||
version: 1.0.0 | ||
version: 0.1.0 | ||
contact: | ||
name: Core DID | ||
email: [email protected] | ||
servers: | ||
- url: "https://k8s-dev.atalaprism.io/prism-agent/" | ||
- url: "http://localhost/prism-agent" | ||
|
||
components: | ||
securitySchemes: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters