8000 Fix of recommended versions and typo on AUTH key example by matheusmaiberg · Pull Request #28 · EvolutionAPI/evolution-docs · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jun 5, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/01-Get Started/Installation/Docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ x-variables:
CONFIG_SESSION_PHONE_CLIENT: "RENAME ME WITH YOUR COMPANY NAME"
# ApiKey Config for authentication High Encryption AES 256 from https://acte.ltd/utils/randomkeygen
AUTHENTICATION_TYPE: "apikey"
AUTHENTICATION_AUTHENTICATION_API_KEY: "YOUR_SUPER_SECURE_KEY"
AUTHENTICATION_API_KEY: "YOUR_SUPER_SECURE_KEY"
# Database
DATABASE_ENABLED: "true"
DATABASE_CONNECTION_URI: "mongodb://root:YOUR_SUPER_SECURE_PASSWORD@mongodb:27017/?authSource=admin&readPreference=primary&ssl=false&directConnection=true"
Expand Down
4 changes: 2 additions & 2 deletions docs/01-Get Started/_updates.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export const updates = [
"Composing over 20s now loops until finished"
],
integrations: [
"Chatwoot: v3.3.1",
"Typebot: v2.20.0"
"Chatwoot: v3.5.2",
"Typebot: v2.23.0"
],
commits: "",
},
Expand Down
3 changes: 1 addition & 2 deletions src/components/UpdatesComponent.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// src/components/UpdatesComponent.js
import React from 'react';
import { updates } from '../../docs/01-Get Started/_updates';
import styles from './UpdatesComponent.module.css'; // Importando o CSS Module
import styles from './UpdatesComponent.module.css';

export default function UpdatesComponent() {
return (
Expand Down
0