This file contains hidden or 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
| docker run \ | |
| -p 8000:8000 \ | |
| -e CHROMA_SERVER_AUTH_CREDENTIALS_PROVIDER="chromadb.auth.token.TokenConfigServerAuthCredentialsProvider" \ | |
| -e CHROMA_SERVER_AUTH_PROVIDER="chromadb.auth.token.TokenAuthServerProvider" \ | |
| -e CHROMA_SERVER_AUTH_CREDENTIALS="new-token" \ # This is your API token once container boots | |
| -e CHROMA_SERVER_AUTH_TOKEN_TRANSPORT_HEADER="X_CHROMA_TOKEN" \ | |
| -v /your/path/to/persistence/:/chroma/chroma \ # `/your/path/to/persistence` should be folder on host machine you want to write storage too for Chroma persistence between containers. | |
| chromadb/chroma |
This file contains hidden or 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
| import './styles/App.css'; | |
| import twitterLogo from './assets/twitter-logo.svg'; | |
| import { ethers } from "ethers"; | |
| import React, { useEffect, useState } from "react"; | |
| import myEpicNft from './utils/MyEpicNFT.json'; | |
| const TWITTER_HANDLE = '_buildspace'; | |
| const TWITTER_LINK = `https://twitter.com/${TWITTER_HANDLE}`; | |
| const OPENSEA_LINK = ''; | |
| const TOTAL_MINT_COUNT = 50; |
This file contains hidden or 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
| name: Security audit | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| push: | |
| paths: | |
| - '**/Cargo.toml' | |
| - '**/Cargo.lock' | |
| jobs: | |
| security_audit: |