forked from yusefnapora/minty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add example env file for nft.storage, update readme
- Loading branch information
1 parent
c1dd494
commit 72894fa
Showing
6 changed files
with
49 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
node_modules | ||
minty-deployment.json | ||
config/default.env | ||
.env | ||
|
||
#Hardhat files | ||
cache | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This file is an example of a .env file that sets environment variables needed to configure Minty to pin data to nft.storage, | ||
# a service run by Protocol Labs that provides free storage for NFT data on IPFS, with backups to Filecoin. | ||
# | ||
# To use, make a copy of this file and name it ".env", and put it in the repository root or this config directory. | ||
# Then, fill in the PINNING_SERVICE_KEY variable with a JWT access token for your nft.storage account. | ||
|
||
# Get your JWT access token from https://nft.storage and paste it in here: | ||
PINNING_SERVICE_KEY="Paste your nft.storage JWT token inside the quotes!" | ||
|
||
# You can leave these values alone to use nft.storage as your pinning service. | ||
PINNING_SERVICE_NAME="nft.storage" | ||
PINNING_SERVICE_ENDPOINT="https://nft.storage/api" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# This file is an example of a .env file that sets environment variables needed to configure Minty to pin data to Pinata, a remote pinning service. | ||
# To use, make a copy of this file and name it ".env", and put it in the repository root or this config directory. | ||
# Then, fill in the PINNING_SERVICE_KEY variable with a JWT access token for your Pinata account. | ||
|
||
# Get your JWT access token from https://pinata.cloud and paste it in here: | ||
PINNING_SERVICE_KEY="Paste your Pinata JWT token inside the quotes!" | ||
|
||
# You can leave these values alone to use Pinata as your pinning service. | ||
PINNING_SERVICE_NAME="pinata" | ||
PINNING_SERVICE_ENDPOINT="https://api.pinata.cloud/psa" |