-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from DeterminateSystems/development-docs
Move development docs into separate Markdown file
- Loading branch information
Showing
2 changed files
with
18 additions
and
14 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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Developing `flakehub-push` | ||
|
||
You can run `flakehub-push` against a Flakehub server running locally. | ||
Assuming the dev environment is running as described in the FlakeHub repo: | ||
|
||
```bash | ||
export FLAKEHUB_PUSH_GITHUB_TOKEN="<secret>" | ||
cargo run -- \ | ||
--visibility public \ | ||
--tag v0.1.0 \ | ||
--repository DeterminateSystems/nix-installer \ | ||
--git-root ../nix-installer \ | ||
--jwt-issuer-uri http://localhost:8081/jwt/token \ | ||
--host http://localhost:8080 | ||
``` |