-
Hi! I wanted to tackle #112. But to confirm that everything is working as expected, I need to create a demo project with the latest dependencies (that is pre-0.4, not 0.3). How do you do this? I wanted to update the I would be happy to hear your solution so I can start working on the problem. This would also be a great addition to the developer documentation. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey! 👋 It really depends on what you are developing/testing, but usually there are two main ways to do it:
# file: shard.override.yml
dependencies:
marten:
path: /path/to/marten (This capability is also documented in the official shards documentation) If you use (2) and then run I also agree that the second solution is something we should probably add to the developer documentation. 🙂 |
Beta Was this translation helpful? Give feedback.
Hey! 👋
It really depends on what you are developing/testing, but usually there are two main ways to do it:
shard.yml
file but at the same time you can define ashard.override.yml
file in which you point to your development version of Marten:(This capability is also documented in the official shards documentation)
If you use (2) and then run
shards install
, your project will use the overridden shard instead of the version defined in theshard.yml
file.I also agree that the s…