Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stove-labs/tutorials-nft-ligo
https://github.com/stove-labs/tutorials-nft-ligo
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/stove-labs/tutorials-nft-ligo
- Owner: stove-labs
- License: mit
- Created: 2019-09-30T16:05:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-07T12:23:37.000Z (over 5 years ago)
- Last Synced: 2024-11-10T15:47:55.605Z (2 months ago)
- Language: Shell
- Size: 7.81 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prerequisites
Docker is running, check with:```zsh
curl --unix-socket /var/run/docker.sock http://localhost/v1.37/version
```Granary CLI installed
```zsh
npm install --global --unsafe-perm @stove-labs/granary@pre-alpha
```Ligo CLI installed
```zsh
curl https://gitlab.com/ligolang/ligo/raw/dev/scripts/installer.sh | bash -s "next"
```# Get started with
```zsh
# Install dependencies
npm i
# Initialise granary
npm run init
# Start the node
npm run start
# Activate protocol 004
npm run activate-proto-004
# Compiling Ligo to Michelson
npm run compile
# Deploying the Michelson Contract to Sandbox
npm run originate
# Buying your first Taco
npm run invoke
```For troubleshooting, visit
[docs-common-issues](https://stove-labs.github.io/granary/docs/getting-started-install#troubleshooting-common-issues).