mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-10 15:17:44 +00:00
17 lines
336 B
Python
17 lines
336 B
Python
"""
|
|
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'],
|
|
}
|