updata
Browse files- .env +49 -0
- .gitattributes +1 -0
.env
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
I have the previous .env file with HF_TOKEN. The user wants to add more platforms, so I'll expand it with placeholders for other common API keys like OpenAI, AWS, etc. This is for testing key detection. I'll use create_file to overwrite .env with the complete new content.
|
2 |
+
|
3 |
+
|
4 |
+
# .env file for testing key detection features on various platforms
|
5 |
+
|
6 |
+
# Hugging Face
|
7 |
+
HF_TOKEN=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
|
8 |
+
|
9 |
+
# OpenAI
|
10 |
+
OPENAI_API_KEY=sk-fakeopenaiapikey1234567890abcdefghijklmnopqrstuvwxyz
|
11 |
+
|
12 |
+
# AWS
|
13 |
+
AWS_ACCESS_KEY_ID=AKIAIOSFODNN7EXAMPLE
|
14 |
+
AWS_SECRET_ACCESS_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
|
15 |
+
|
16 |
+
# Google Cloud
|
17 |
+
GOOGLE_API_KEY=AIzaFakeGoogleApiKey1234567890
|
18 |
+
|
19 |
+
# Stripe
|
20 |
+
STRIPE_SECRET_KEY=sk_test_1234567890abcdefghijklmnopqrstuvwxyz
|
21 |
+
|
22 |
+
# GitHub
|
23 |
+
GITHUB_TOKEN=ghp_fakegithubtoken1234567890abcdefghijklmnopqrstuvwxyz
|
24 |
+
|
25 |
+
# Anthropic (Claude)
|
26 |
+
ANTHROPIC_API_KEY=sk-ant-fakeanthropicapikey1234567890
|
27 |
+
|
28 |
+
|
29 |
+
# groq:
|
30 |
+
GROQ_API_KEY=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
|
31 |
+
|
32 |
+
# replicate:
|
33 |
+
replicate_API_KEY=r8_0xtBYKN9pqWxPiMUlmKtkGq1fsdlG3t04Sp8w
|
34 |
+
|
35 |
+
# cohere:
|
36 |
+
cohere_API_KEY=a271772bd2d02dce487419cb4448c83195dda55c
|
37 |
+
|
38 |
+
# Nvidia
|
39 |
+
Nvidia_API_KEY=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
|
40 |
+
|
41 |
+
# mongodb
|
42 |
+
MONGODB_URI=mongodb+srv://Anonymous:[email protected]/?retryWrites=true&w=majority&appName=Cluster0&ssl=true
|
43 |
+
|
44 |
+
# mysql
|
45 |
+
MYSQL_DATABASE_URL=jdbc:mysql://127.0.0.1:3306/studio?user=root&password=123456
|
46 |
+
# Add more as needed, these are placeholders for testing purposes only
|
47 |
+
|
48 |
+
|
49 |
+
|
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
.vscode
|