-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
23 lines (18 loc) · 900 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Configuration Parameters for Database and AWS S3 Storage
# Database Configuration
customhost = "http://employee.csrgslmtfzz7.ap-south-1.rds.amazonaws.com"
customuser = "awsproject"
custompass = "awsproject123"
customdb = "employee"
# AWS S3 Storage Configuration
custombucket = "addemployee"
customregion = "bombay"
# The code defines configuration parameters for connecting to an AWS RDS database and using an AWS S3 bucket for storage.
# Database Configuration:
# - customhost: The endpoint URL of the AWS RDS database.
# - customuser: The username for database access.
# - custompass: The password for database access.
# - customdb: The name of the database to connect to.
# AWS S3 Storage Configuration:
# - custombucket: The name of the AWS S3 bucket for storing files, in this case, "addemployee."
# - customregion: The AWS region where the S3 bucket is located, in this case, "bombay."