Skip to content

Commit

Permalink
Add GitHub and YouTube links, update README (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellemaxwell authored Dec 6, 2024
1 parent a6e9318 commit 25c8c18
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 3 deletions.
28 changes: 26 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

Complete documentation for Envoy can be found at [https://trisa.dev/envoy](https://trisa.dev/envoy).


## Running Envoy Locally

**NOTE**: Development is happening rapidly on the node right now; if these instructions don't work correctly, please open an issue on GitHub so we can review the docs.
Expand Down Expand Up @@ -78,4 +77,29 @@ $ docker compose exec counterparty.local envoy createuser -e [email] -r admin

You can access the counterparty at [http://localhost:9000](http://localhost:9000) or at [http://counterparty.local:9000](http://counterparty.local:9000) if you have edited your hosts file.

> **NOTE**: Due to the way cookie domains work with the credentials, you can only be logged into either the envoy development node or the counterparty development node at the same time. It's annoying, but you'll have to login again when switching between nodes unfortunately.
> **NOTE**: Due to the way cookie domains work with the credentials, you can only be logged into either the envoy development node or the counterparty development node at the same time. It's annoying, but you'll have to login again when switching between nodes unfortunately.

## Envoy Implementation Options

| Open Source | One-Time Setup | Managed Service |
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Envoy is open source (MIT License). Download, install, integrate, host and support your own Envoy node and service. | The Envoy team will install and configure your Envoy node in your environment while you host, maintain, and support the node on an ongoing basis. | The Envoy team will install, configure, host, maintain, and support an Envoy node for you. Includes dedicated, provenance-aware node with regional deployments. |
| | | |

If you’d like more information on the one-time integration service or managed services, [schedule a demo](https://rtnl.link/p2WzzmXDuSu) with the Envoy team!


## Envoy Support

| | Open Source | One-Time Setup | Managed Service |
| ------------------------------- | ---------------------- | ---------------------- | ---------------------- |
| [Envoy Documentation](https://trisa.dev/envoy/index.html) | ✓ | ✓ | ✓ |
| Access to [TRISA Slack Community](https://trisa-workspace.slack.com/) | ✓ | ✓ | ✓ |
| Training from Envoy Team | | ✓ | ✓ |
| Dedicated Support | | | ✓ |
| Response Time* | Within 5 business days | Within 5 business days | Within 3 business days |



*The Envoy team's business hours are 9AM - 6PM Eastern.
21 changes: 21 additions & 0 deletions pkg/web/static/styles/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -2896,6 +2896,14 @@ details.collapse summary::-webkit-details-marker {
margin-inline-start: 0.5rem;
}

.mt-0 {
margin-top: 0px;
}

.mt-0\.5 {
margin-top: 0.125rem;
}

.mt-1 {
margin-top: 0.25rem;
}
Expand Down Expand Up @@ -2956,6 +2964,10 @@ details.collapse summary::-webkit-details-marker {
height: 1rem;
}

.h-5 {
height: 1.25rem;
}

.h-\[28px\] {
height: 28px;
}
Expand Down Expand Up @@ -3020,6 +3032,10 @@ details.collapse summary::-webkit-details-marker {
width: 12rem;
}

.w-5 {
width: 1.25rem;
}

.w-52 {
width: 13rem;
}
Expand Down Expand Up @@ -3152,6 +3168,11 @@ details.collapse summary::-webkit-details-marker {
column-gap: 0.5rem;
}

.gap-x-3 {
-moz-column-gap: 0.75rem;
column-gap: 0.75rem;
}

.gap-x-4 {
-moz-column-gap: 1rem;
column-gap: 1rem;
Expand Down
8 changes: 7 additions & 1 deletion pkg/web/templates/components/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@
</ul>
</div>
<div class="navbar-end">
<div class="flex gap-x-4 items-center">
<div class="flex gap-x-3 items-center">
<div class="h-5">
<a class="github-button" href="https://github.com/trisacrypto/envoy" target="_blank" data-color-scheme="no-preference: light; light: light; dark: dark;" data-show-count="true" aria-label="Star Envoy on GitHub">Star</a>
</div>
<div class="mt-0.5">
<a href="https://www.youtube.com/@travelruleinformationshari7842" target="_blank"><i class="fa-brands fa-youtube text-xl w-5 h-auto"></i></a>
</div>
<span class="text-sm font-bold">{{ .User.Organization }}</span>
<div tabindex="0" role="button" class="mr-4 dropdown dropdown-bottom dropdown-left">
<img src="{{ .User.Gravatar }}" alt="" class="h-[28px] w-[28px] rounded-full" />
Expand Down
1 change: 1 addition & 0 deletions pkg/web/templates/components/scripts.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<script src="https://unpkg.com/htmx.org@1.9.10" integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC" crossorigin="anonymous"></script>
<script src="https://unpkg.com/htmx.org@1.9.11/dist/ext/json-enc.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script src="https://unpkg.com/hyperscript.org@0.9.12"></script>
<script src="https://unpkg.com/slim-select@latest/dist/slimselect.min.js"></script>
<script type="module" src="/static/js/main.js"></script>
Expand Down

0 comments on commit 25c8c18

Please sign in to comment.