-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Example.json
More file actions
46 lines (46 loc) · 1.14 KB
/
Copy pathappsettings.Example.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"ConnectionStrings": {
"ConexionPrincipal": "Server=localhost;Port=3306;Database=epycus_db;User=epicus_user;Password=YOUR_PASSWORD;"
},
"MySql": {
"ServerVersion": "11.8.6-mariadb"
},
"Jwt": {
"Clave": "YOUR_SUPER_SECRET_JWT_KEY_HERE_AT_LEAST_32_CHARACTERS_LONG!",
"Emisor": "EpycusWeb",
"Audiencia": "EpycusUsuarios",
"ExpiracionMinutos": 60,
"ExpiracionRefreshDias": 7
},
"Google": {
"ClientId": "YOUR_GOOGLE_CLIENT_ID_HERE.apps.googleusercontent.com",
"ClientSecret": "YOUR_GOOGLE_CLIENT_SECRET_HERE"
},
"Correo": {
"Servidor": "smtp.gmail.com",
"Puerto": 587,
"Usuario": "your-email@gmail.com",
"Contrasena": "YOUR_GMAIL_APP_PASSWORD_HERE",
"NombreRemitente": "Epycus App"
},
"App": {
"UrlBase": "http://app.epycus.es",
"Version": "1.0.0"
},
"Gemini": {
"ApiKey": "YOUR_GEMINI_API_KEY_HERE",
"Modelo": "gemini-2.5-flash-lite"
},
"Cors": {
"OrigenesPermitidos": [
"http://app.epycus.es",
"https://app.epycus.es"
]
}
}