File size: 1,513 Bytes
c8a346a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7b924e2
c8a346a
 
 
 
 
 
 
 
 
 
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
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.


# .env file for testing key detection features on various platforms

# Hugging Face
HF_TOKEN=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

# OpenAI
OPENAI_API_KEY=sk-fakeopenaiapikey1234567890abcdefghijklmnopqrstuvwxyz

# AWS
AWS_ACCESS_KEY_ID=AKIAIOSFODNN7EXAMPLE
AWS_SECRET_ACCESS_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY

# Google Cloud
GOOGLE_API_KEY=AIzaFakeGoogleApiKey1234567890

# Stripe
STRIPE_SECRET_KEY=sk_test_1234567890abcdefghijklmnopqrstuvwxyz

# GitHub
GITHUB_TOKEN=ghp_fakegithubtoken1234567890abcdefghijklmnopqrstuvwxyz

# Anthropic (Claude)
ANTHROPIC_API_KEY=sk-ant-fakeanthropicapikey1234567890


# groq:
GROQ_API_KEY=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

# replicate:
replicate_API_KEY=r8_0xtBYKN9pqWxPiMUlmKtkGq1fsdlG3t04Sp8w

# cohere:
cohere_API_KEY=a271772bd2d02dce487419cb4448c83195dda55c

# Nvidia
Nvidia_API_KEY=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

# mongodb
MONGODB_URI=mongodb+srv://Anonymous:[email protected]/?retryWrites=true&w=majority&appName=Cluster0&ssl=true

# mysql
MYSQL_DATABASE_URL=jdbc:mysql://127.0.0.1:3306/studio?user=root&password=123456
# Add more as needed, these are placeholders for testing purposes only