-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataverse.config.ts
More file actions
16 lines (16 loc) · 958 Bytes
/
dataverse.config.ts
File metadata and controls
16 lines (16 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export const config = {
name: "lucid", // app name should NOT contain "-"
logo: "https://bafybeifozdhcbbfydy2rs6vbkbbtj3wc4vjlz5zg2cnqhb2g4rm2o5ldna.ipfs.w3s.link/dataverse.svg",
website: ["https://lucid-orcin.vercel.app/"], // you can use localhost:(port) for testing
defaultFolderName: "Main",
description:
"Your ultimate dream companion for recording, exploring, and enhancing your journey through the realm of dreams.",
models: [
{
isPublicDomain: false, // default
schemaName: "dream.graphql",
encryptable: ["text", "image", "emotion", "interpretation"], // strings within the schema and within the array represent fields that may be encrypted, while fields within the schema but not within the array represent fields that will definitely not be encrypted
},
],
ceramicUrl: null, // leave null to use dataverse test Ceramic node. Set to {Your Ceramic node Url} for mainnet, should start with "https://".
};