-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcredentials_opensource.json
More file actions
80 lines (80 loc) · 2.22 KB
/
Copy pathcredentials_opensource.json
File metadata and controls
80 lines (80 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"AI_SERVICES": {
"META_AI": {
"cookie": "YOUR_META_COOKIE_HERE"
},
"HUGGING_FACE": {
"api_key": "YOUR_HUGGINGFACE_KEY",
"models": {
"text_generation": "gpt2",
"summarization": "facebook/bart-large-cnn",
"translation": "Helsinki-NLP/opus-mt-en-fr"
}
},
"LOCAL_AI": {
"endpoint": "http://localhost:8080",
"models": ["ggml-gpt4all-j", "ggml-vicuna-13b-1.1"]
}
},
"SOCIAL_MEDIA": {
"MASTODON": {
"instance": "mastodon.social",
"access_token": "YOUR_MASTODON_TOKEN",
"api_base": "https://mastodon.social/api/v1/"
},
"PIXELFED": {
"instance": "pixelfed.social",
"api_base": "https://pixelfed.social/api/v1/",
"access_token": "YOUR_PIXELFED_TOKEN"
},
"LEMMY": {
"instance": "lemmy.world",
"api_base": "https://lemmy.world/api/v3/",
"username": "YOUR_USERNAME",
"password": "YOUR_PASSWORD"
}
},
"EMAIL_MARKETING": {
"LISTMONK": {
"endpoint": "http://localhost:9000",
"admin_username": "admin",
"admin_password": "YOUR_PASSWORD"
}
},
"ANALYTICS": {
"PLAUSIBLE": {
"site_id": "YOUR_SITE_ID",
"api_key": "YOUR_API_KEY"
},
"UMAMI": {
"website_id": "YOUR_WEBSITE_ID",
"endpoint": "https://umami.yourdomain.com"
}
},
"CMS": {
"STRAPI": {
"endpoint": "http://localhost:1337",
"api_token": "YOUR_API_TOKEN"
}
},
"AUTOMATION": {
"N8N": {
"endpoint": "http://localhost:5678",
"api_key": "YOUR_API_KEY"
}
},
"STORAGE": {
"MINIO": {
"endpoint": "http://localhost:9000",
"access_key": "YOUR_ACCESS_KEY",
"secret_key": "YOUR_SECRET_KEY",
"bucket": "YOUR_BUCKET_NAME"
}
},
"SEARCH": {
"MEILISEARCH": {
"endpoint": "http://localhost:7700",
"master_key": "YOUR_MASTER_KEY"
}
}
}