https://github.com/lousando/briskett
A delicious Tezos wallet interface for Trezor.
https://github.com/lousando/briskett
crypto cryptocurrency tezos trezor xtz
Last synced: 8 months ago
JSON representation
A delicious Tezos wallet interface for Trezor.
- Host: GitHub
- URL: https://github.com/lousando/briskett
- Owner: lousando
- License: mit
- Created: 2021-05-11T16:53:49.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-04-10T05:15:09.000Z (about 1 year ago)
- Last Synced: 2025-04-10T05:39:35.524Z (about 1 year ago)
- Topics: crypto, cryptocurrency, tezos, trezor, xtz
- Language: TypeScript
- Homepage: https://briskett.app
- Size: 3.92 MB
- Stars: 6
- Watchers: 4
- Forks: 12
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Briskett 🥩
A delicious Tezos wallet interface for Trezor.
## Dependencies 🧱
- Node >= 22.x
- PNPM >= 10.x
- The [Astro](https://astro.build/) Web Framework
- The [SolidJs](https://www.solidjs.com/) Component Framework
## Setup 🛠️
### .env
Start by running the following command to create an `.env` file to keep your secrets.
```bash
cp .env.example .env
```
From there, go ahead and populate the `.env` file.
It is populated with comments to help get you find what you need.
### Web Server 🌎
Run the following to get the web app going.
```bash
# install dependencies
$ pnpm i
# serve with hot reload at http://localhost:4321
$ pnpm watch
# Extras
# ======
# optional - generate static project
$ pnpm build
# optional - launch web server (after building)
$ pnpm preview
```