8c1e593686
- Introduced a new customer management domain, including entities, services, handlers, and forms for customer operations. - Added JWT-based user authorization settings in the configuration file for both user and customer management. - Updated API endpoints to reflect the new structure, including changes to health check and user management routes. - Enhanced Swagger documentation to include new customer-related endpoints and authorization details. - Refactored the Makefile to include a target for generating API documentation. - Removed obsolete documentation files to streamline the project structure.
78 lines
1.8 KiB
YAML
78 lines
1.8 KiB
YAML
server:
|
|
host: "0.0.0.0"
|
|
port: 8081
|
|
timeout: 30s
|
|
read_timeout: 10s
|
|
write_timeout: 10s
|
|
|
|
database:
|
|
mongodb:
|
|
uri: "mongodb://localhost:27017"
|
|
name: "tender_management"
|
|
timeout: 10s
|
|
max_pool_size: 100
|
|
|
|
cache:
|
|
redis:
|
|
host: "localhost"
|
|
port: 6379
|
|
password: ""
|
|
db: 0
|
|
pool_size: 10
|
|
|
|
queue:
|
|
rabbitmq:
|
|
url: "amqp://guest:guest@localhost:5672/"
|
|
exchange: "tender_exchange"
|
|
queues:
|
|
scraping: "scraping_queue"
|
|
processing: "processing_queue"
|
|
notifications: "notifications_queue"
|
|
|
|
search:
|
|
elasticsearch:
|
|
urls: ["http://localhost:9200"]
|
|
username: ""
|
|
password: ""
|
|
index_prefix: "tender_"
|
|
|
|
user_authorization:
|
|
jwt:
|
|
access_secret: "your-super-secret-access-token-key-here-make-it-long-and-secure"
|
|
refresh_secret: "your-super-secret-refresh-token-key-here-make-it-long-and-secure"
|
|
access_expires_in: 3600 # 1 hour in seconds
|
|
refresh_expires_in: 2592000 # 30 days in seconds
|
|
|
|
customer_authorization:
|
|
jwt:
|
|
access_secret: "your-super-secret-access-token-key-here-make-it-long-and-secure"
|
|
refresh_secret: "your-super-secret-refresh-token-key-here-make-it-long-and-secure"
|
|
access_expires_in: 3600 # 1 hour in seconds
|
|
refresh_expires_in: 2592000 # 30 days in seconds
|
|
|
|
ai:
|
|
openai:
|
|
api_key: ""
|
|
model: "gpt-3.5-turbo"
|
|
max_tokens: 1000
|
|
|
|
scraping:
|
|
user_agent: "TenderBot/1.0"
|
|
timeout: 30s
|
|
max_retries: 3
|
|
delay_between_requests: 1s
|
|
|
|
logging:
|
|
level: "info"
|
|
format: "json"
|
|
output: "file" # stdout, stderr, file
|
|
file:
|
|
path: "./logs/app.log"
|
|
max_size: 100 # Max size in MB before rotation
|
|
max_backups: 5 # Number of backup files to keep
|
|
max_age: 30 # Max age in days to keep log files
|
|
compress: true # Compress rotated files
|
|
|
|
rate_limiting:
|
|
requests_per_minute: 100
|
|
burst: 20 |