Skip to content

Commit ee489ef

Browse files
author
Shota Jolbordi
committed
Remove outer node folder
Signed-off-by: Shota Jolbordi <[email protected]>
1 parent 86d0e42 commit ee489ef

File tree

217 files changed

+147
-245
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

217 files changed

+147
-245
lines changed

CHANGELOG.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 0 additions & 138 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ $ sbt node/run
8181

8282
This will start the node server. You can interact with it using gRPC calls at port 50053.
8383
By default, the node is running on "in memory" mode, which means that any operation submitted to it will be instantly confirmed and processed.
84-
Alternatively, you can configure to run it against a Cardano network by setting values for the db-sync and Cardano wallet services. See [this documentation](https://github.com/hyperledger/identus-cloud-agent/blob/main/docs/guides/deploying-node.md) for more details
84+
Alternatively, you can configure to run it against a Cardano network by setting values for the db-sync and Cardano wallet services. See [this documentation](docs/node/deployment.md) for more details
8585

8686
For development purposes, you may want to reduce the number of blocks to wait for confirmations. Note that this parameter is fixed for mainnet. Hence, only modify then for tests if needed.
8787

build.sbt

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ lazy val Dependencies = new {
148148

149149
publish / skip := true
150150

151-
lazy val node =
151+
lazy val root =
152152
project
153-
.in(file("node"))
153+
.in(file("."))
154154
.settings(
155155
name := "node",
156156
Compile / mainClass := Some("io.iohk.atala.prism.node.NodeApp"),
@@ -255,15 +255,11 @@ lazy val node =
255255
Dependencies.slf4j,
256256
Dependencies.typesafeConfig,
257257
Dependencies.fs2,
258-
Dependencies.scalaUri,
258+
Dependencies.scalaUri
259259
)
260260
)
261261
.enablePlugins(BuildInfoPlugin, JavaAppPackaging, DockerPlugin)
262262

263-
lazy val root = project
264-
.in(file("."))
265-
.aggregate(node)
266-
267263
Global / onChangedBuildSource := ReloadOnSourceChanges
268264

269265
// ############################
@@ -276,6 +272,6 @@ releaseProcess := Seq[ReleaseStep](
276272
runClean,
277273
runTest,
278274
setReleaseVersion,
279-
ReleaseStep(releaseStepTask(node / Docker / stage)),
275+
ReleaseStep(releaseStepTask(root / Docker / stage)),
280276
setNextVersion
281277
)

0 commit comments

Comments
 (0)