Add imports for equipments from csv

This commit is contained in:
Keannu Christian Bernasol 2024-01-06 20:34:21 +08:00
parent 6f5911144c
commit 062b017e16
9 changed files with 508 additions and 46 deletions

View file

@ -95,6 +95,8 @@ MIDDLEWARE = [
STATIC_URL = 'static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage"
MEDIA_URL = 'api/v1/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
ROOT_URLCONF = 'config.urls'