Skip to content

Commit

Permalink
Merge branch 'main' into serial/delete-blueprint-json
Browse files Browse the repository at this point in the history
  • Loading branch information
shekohex authored Oct 21, 2024
2 parents 43998a2 + 9725aef commit 2247383
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ updates:
interval: "daily"
open-pull-requests-limit: 5
- package-ecosystem: "gitsubmodule"
directory: "contracts/lib"
directory: "/"
allow:
- dependency-name: "tnt-core"
- dependency-name: "contracts/lib/tnt-core"
schedule:
interval: "daily"
4 changes: 2 additions & 2 deletions .github/workflows/verify-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
with:
name: ${{ env.PROJECT_NAME }}
arguments: >
--define gh-username="webb-tools"
--define gh-username="tangle-network"
--define project-description="An example blueprint"
--define project-homepage="https://webb.tools"
--define project-homepage="https://tangle.tools"
--define flakes=true
--define docker=true
--define base-image="rustlang/rust:nightly"
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
url = https://github.com/foundry-rs/forge-std
[submodule "contracts/lib/tnt-core"]
path = contracts/lib/tnt-core
url = https://github.com/webb-tools/tnt-core
url = https://github.com/tangle-network/tnt-core
branch = main
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ RUN cargo build --release
FROM debian:bookworm-slim AS runtime
WORKDIR /app
COPY --from=chef /app/target/release/{{project-name}} /usr/local/bin
COPY --from=chef /app/docker/entrypoint.sh /usr/local/bin
RUN chmod +x /usr/local/bin/entrypoint.sh

LABEL org.opencontainers.image.authors="{{authors}}"
LABEL org.opencontainers.image.description="{{project-description}}"
Expand All @@ -28,4 +26,4 @@ ENV BIND_PORT=9632
ENV BLUEPRINT_ID=0
ENV SERVICE_ID=0

ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
ENTRYPOINT ["/usr/local/bin/{{project-name}}", "run"]
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Before you can run this project, you will need to have the following software in

- [Rust](https://www.rust-lang.org/tools/install)
- [Forge](https://getfoundry.sh)
- [Tangle](https://github.com/webb-tools/tangle?tab=readme-ov-file#-getting-started-)
- [Tangle](https://github.com/tangle-network/tangle?tab=readme-ov-file#-getting-started-)

You will also need to install `cargo-tangle`, our CLI tool for creating and deploying Tangle Blueprints:

Expand All @@ -17,7 +17,7 @@ To install the Tangle CLI, run the following command:
> Supported on Linux, MacOS, and Windows (WSL2)
```bash
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/webb-tools/gadget/releases/download/cargo-tangle-v0.1.2/cargo-tangle-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tangle-network/gadget/releases/download/cargo-tangle-v0.1.2/cargo-tangle-installer.sh | sh
```

Or, if you prefer to install the CLI from crates.io:
Expand Down Expand Up @@ -60,7 +60,7 @@ For more details, please refer to the [project documentation](https://docs.tangl

## 📬 Feedback

If you have any feedback or issues, please feel free to open an issue on our [GitHub repository](https://github.com/webb-tools/blueprint-template/issues).
If you have any feedback or issues, please feel free to open an issue on our [GitHub repository](https://github.com/tangle-network/blueprint-template/issues).

## 📜 License

Expand Down
6 changes: 0 additions & 6 deletions docker/entrypoint.sh

This file was deleted.

0 comments on commit 2247383

Please sign in to comment.