inventory / backend / sebn_inventory / settings / development.py
development.py
Raw
import requests
import json
from celery.schedules import crontab
import os.path
import os
from .common import *

ALLOWED_HOSTS = ["*"]
DEBUG = True
STATIC_URL = "/static/"
STATIC_ROOT = os.path.abspath(
    os.path.join(os.path.dirname(__file__), "../../", "static")
)

MEDIA_URL = "/media/"
MEDIA_ROOT = "/sebn-inventory/backend/media/"