mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
499 B
13 lines
499 B
from .base import * # noqa: F403
|
|
from .base import env
|
|
|
|
MIDDLEWARE.append("api.middleware.RangesMiddleware") # noqa: F405
|
|
|
|
DJANGO_DRF_FILEPOND_STORAGES_BACKEND = "storages.backends.s3boto3.S3Boto3Storage"
|
|
AWS_ACCESS_KEY_ID = env("AWS_ACCESS_KEY_ID")
|
|
AWS_SECRET_ACCESS_KEY = env("AWS_SECRET_ACCESS_KEY")
|
|
AWS_S3_REGION_NAME = env("REGION_NAME", "us-west-1")
|
|
AWS_STORAGE_BUCKET_NAME = env("BUCKET_NAME", "doccano")
|
|
AWS_DEFAULT_ACL = "private"
|
|
AWS_BUCKET_ACL = "private"
|
|
AWS_AUTO_CREATE_BUCKET = True
|