Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update env variables in application.yml #7

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,34 +17,34 @@ spring:
max-file-size: 50MB
max-request-size: 50MB
aws:
access-key: AKIAXYKJRLFYOGZSQSGZ
secret-key: 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
access-key: ${AWS_ACCESS_KEY}
secret-key: ${AWS_SECRET_KEY}
region: us-east-2
attachments-bucket: open-attachments
recordings-bucket: open-recordings
transcripts-bucket: open-transcripts
attachments-bucket: ${AWS_ATTACHMENTS_BUCKET}
recordings-bucket: ${AWS_RECORDINGS_BUCKET}
transcripts-bucket: ${AWS_TRANSCRIPTS_BUCKET}
cognito:
user-pool-id: us-east-2_cQqrqGoe5
app-client-id: 661d1ashh62bvj8m9g4r2699qm
app-client-secret: 1o94g0mtth93frsihfuocl79918muchdc5iaikjcohokbvk8uc03
user-pool-id: ${AWS_COGNITO_USER_POOL_ID}
app-client-id: ${AWS_COGNITO_APP_CLIENT_ID}
app-client-secret: ${AWS_COGNITO_APP_CLIENT_SECRET}

jwks:
url: https://cognito-idp.us-east-2.amazonaws.com/us-east-2_cQqrqGoe5/.well-known/jwks.json
url: ${AWS_COGNITO_JWKS_URL}

openai:
model: gpt-3.5-turbo-0301
model: ${OPENAI_MODEL}
api:
url: https://api.openai.com/v1/chat/completions
key: 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
url: ${OPENAI_API_URL}
key: ${OPENAI_API_KEY}

gemini:
api:
key: AIzaSyDWkne0n1KzsTZWEzp3x7SaHyafjd0ueHU
url: https://generativelanguage.googleapis.com/v1beta/models
key: ${GEMINI_API_KEY}
url: ${GEMINI_API_URL}


system:
GOOGLE_APPLICATION_CREDENTIALS: /Users/beksultan/Documents/open-messanger/alien-scope-428812-i2-0794e36fcbee.json
GOOGLE_APPLICATION_CREDENTIALS: ${GOOGLE_APPLICATION_CREDENTIALS}

kms:
url: ws://127.0.0.1:8888/kurento
Expand All @@ -64,4 +64,4 @@ state:

# FIREBASE
app:
firebase-configuration-file: open-chat-5f7ba-firebase-adminsdk-1523p-0a596434ea.json
firebase-configuration-file: ${FIREBASE_CONFIG_FILE}
Loading