From 700291f69732ec9b4d3466914d528f24c8960088 Mon Sep 17 00:00:00 2001 From: garikbesson Date: Tue, 29 Oct 2024 15:59:50 +0100 Subject: [PATCH] minor things --- .gitpod.Dockerfile | 6 ------ .gitpod.yml | 7 ------- README.md | 2 +- 3 files changed, 1 insertion(+), 14 deletions(-) delete mode 100644 .gitpod.Dockerfile delete mode 100644 .gitpod.yml diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile deleted file mode 100644 index 09cba9c6..00000000 --- a/.gitpod.Dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM gitpod/workspace-full - -RUN bash -cl "rustup toolchain install stable && rustup target add wasm32-unknown-unknown" - -RUN bash -c ". .nvm/nvm.sh \ - && nvm install v16 && nvm alias default v16" \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index 12d2e9fa..00000000 --- a/.gitpod.yml +++ /dev/null @@ -1,7 +0,0 @@ -image: - file: .gitpod.Dockerfile -# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/ -tasks: - - before: nvm use default && npm install near-cli -g --no-optional - init: yarn && brew install tree - command: clear && echo Explore non-fungible tokens on NEAR Protocol diff --git a/README.md b/README.md index ad27d98c..11618dc7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Non-fungible Token (NFT) Example 👋 + [![](https://img.shields.io/badge/⋈%20Examples-Basics-green)](https://docs.near.org/tutorials/welcome) [![](https://img.shields.io/badge/Contract-Rust-red)](contract-rs) -![example workflow](https://github.com/near-examples/NFT/actions/workflows/tests-rs.yml/badge.svg) This repository contains an example implementation of a [non-fungible token] contract in Rust which uses [near-contract-standards] and workspaces-rs tests.