Initial Commit

This commit is contained in:
jain
2023-06-23 19:13:49 +05:30
parent 501deaac0b
commit 8bc3a307c0
49 changed files with 1752 additions and 0 deletions

View File

@ -0,0 +1,16 @@
"""
This module contains constants used throughout the project
"""
from zod_bank.settings import BUCKET_NAME
# Define S3 folder url
S3_FOLDER_DIR = {
'user_image': 'user_image/',
}
# S3 bucket url
S3_URL = "https://"+BUCKET_NAME+".s3.amazonaws.com/"
S3_FOLDER_URL = {
'user_image_file': S3_URL+S3_FOLDER_DIR['user_image'],
}