Init Commit
This commit is contained in:
49
Backend/GestorFacturas.API/appsettings.json
Normal file
49
Backend/GestorFacturas.API/appsettings.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"ConnectionStrings": {
|
||||
"DefaultConnection": "Server=TU_SERVIDOR_SQL;Database=AdminFacturasApp;User Id=TU_USUARIO;Password=TU_PASSWORD;TrustServerCertificate=True;MultipleActiveResultSets=true"
|
||||
},
|
||||
"EmpresasMapping": {
|
||||
"0001": "ELDIA",
|
||||
"0002": "PUBLIEXITO",
|
||||
"0003": "RADIONUEVA",
|
||||
"0004": "RADIOVIEJA",
|
||||
"0005": "SIP"
|
||||
},
|
||||
"FacturaTiposMapping": {
|
||||
"FSR": "A",
|
||||
"FBR": "B",
|
||||
"CAI": "NCA",
|
||||
"CBI": "NCB",
|
||||
"CAC": "NCA",
|
||||
"CBC": "NCB",
|
||||
"DAI": "NDA",
|
||||
"DBI": "NDB",
|
||||
"DAC": "NDA",
|
||||
"DBC": "NDB"
|
||||
},
|
||||
"Jwt": {
|
||||
"Key": "CLAVE_JWT_MUY_LARGA_AQUI_MINIMO_32_CHARS",
|
||||
"Issuer": "GestorFacturasAPI",
|
||||
"Audience": "GestorFacturasFrontend"
|
||||
},
|
||||
"EncryptionKey": "CLAVE_ENCRIPTACION_32_BYTES_AQUI",
|
||||
"Serilog": {
|
||||
"MinimumLevel": {
|
||||
"Default": "Information",
|
||||
"Override": {
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.EntityFrameworkCore": "Warning",
|
||||
"System": "Warning"
|
||||
}
|
||||
},
|
||||
"WriteTo": [
|
||||
{
|
||||
"Name": "Console",
|
||||
"Args": {
|
||||
"outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj}{NewLine}{Exception}"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
Reference in New Issue
Block a user