22 lines
551 B
Python
Executable file
22 lines
551 B
Python
Executable file
import logging
|
|
|
|
from etcd3_wrapper import Etcd3Wrapper
|
|
from decouple import config
|
|
|
|
BASE_PATH = config("BASE_DIR", "/var/www")
|
|
WITHOUT_CEPH = config("WITHOUT_CEPH", False, cast=bool)
|
|
ETCD_URL = config("ETCD_URL")
|
|
IMAGE_PREFIX = config("IMAGE_PREFIX")
|
|
IMAGE_STORE_PREFIX = config("IMAGE_STORE_PREFIX")
|
|
IMAGE_DIR = config("IMAGE_DIR")
|
|
|
|
logging.basicConfig(
|
|
level=logging.DEBUG,
|
|
filename="log.txt",
|
|
filemode="a",
|
|
format="%(asctime)s: %(levelname)s - %(message)s",
|
|
datefmt="%d-%b-%y %H:%M:%S",
|
|
)
|
|
|
|
|
|
client = Etcd3Wrapper(host=ETCD_URL)
|