We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 573eaa2 commit 0eeedfaCopy full SHA for 0eeedfa
README.md
@@ -89,6 +89,11 @@ docker-compose run web build crate <CRATE_NAME> <CRATE_VERSION>
89
# Builds every crate and adds them into database
90
# (beware: this may take months to finish)
91
docker-compose run web build world
92
+
93
+# Builds a local package you have at <SOURCE> and adds it to the database.
94
+# The package does not have to be on crates.io.
95
+# The package must be on the local filesystem, git urls are not allowed.
96
+docker-compose run -v "$(realpath <SOURCE>)":/build web build crate --local /build
97
```
98
99
0 commit comments