148 lines
3.8 KiB
Python
148 lines
3.8 KiB
Python
"""
|
|
Django settings for manufacture_app project.
|
|
"""
|
|
|
|
from pathlib import Path
|
|
import os
|
|
from decouple import config
|
|
|
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = config('SECRET_KEY', default='django-insecure-your-secret-key-here-change-in-production')
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = config('DEBUG', default=True, cast=bool)
|
|
|
|
ALLOWED_HOSTS = config('ALLOWED_HOSTS', default='localhost,127.0.0.1', cast=lambda v: [s.strip() for s in v.split(',')])
|
|
|
|
# Application definition
|
|
INSTALLED_APPS = [
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'django_extensions',
|
|
'crispy_forms',
|
|
'crispy_bootstrap5',
|
|
|
|
# Custom apps
|
|
'core',
|
|
'users',
|
|
'inventory',
|
|
'purchase',
|
|
'manufacture',
|
|
'sales',
|
|
]
|
|
|
|
MIDDLEWARE = [
|
|
'django.middleware.security.SecurityMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
]
|
|
|
|
ROOT_URLCONF = 'manufacture_app.urls'
|
|
|
|
TEMPLATES = [
|
|
{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [BASE_DIR / 'templates'],
|
|
'APP_DIRS': True,
|
|
'OPTIONS': {
|
|
'context_processors': [
|
|
'django.template.context_processors.debug',
|
|
'django.template.context_processors.request',
|
|
'django.contrib.auth.context_processors.auth',
|
|
'django.contrib.messages.context_processors.messages',
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
WSGI_APPLICATION = 'manufacture_app.wsgi.application'
|
|
|
|
# Database
|
|
# When running as executable, database should be in the same directory as the executable
|
|
import sys
|
|
import os
|
|
|
|
# Check if we're running as a PyInstaller executable
|
|
if getattr(sys, 'frozen', False):
|
|
# Running as compiled executable
|
|
BASE_DB_DIR = Path(os.path.dirname(sys.executable))
|
|
else:
|
|
# Running as script
|
|
BASE_DB_DIR = BASE_DIR
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': BASE_DB_DIR / 'db.sqlite3',
|
|
}
|
|
}
|
|
|
|
# Password validation
|
|
AUTH_PASSWORD_VALIDATORS = [
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
|
|
},
|
|
]
|
|
|
|
# Internationalization
|
|
LANGUAGE_CODE = 'id'
|
|
TIME_ZONE = 'Asia/Jakarta'
|
|
USE_I18N = True
|
|
USE_TZ = True
|
|
USE_L10N = True
|
|
|
|
# Number formatting for Indonesian locale
|
|
THOUSAND_SEPARATOR = '.'
|
|
DECIMAL_SEPARATOR = ','
|
|
NUMBER_GROUPING = 3
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
STATIC_URL = 'static/'
|
|
STATIC_ROOT = BASE_DIR / 'staticfiles'
|
|
STATICFILES_DIRS = [
|
|
BASE_DIR / 'static',
|
|
]
|
|
|
|
# Media files
|
|
MEDIA_URL = 'media/'
|
|
MEDIA_ROOT = BASE_DIR / 'media'
|
|
|
|
# Default primary key field type
|
|
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|
|
|
|
# Crispy Forms
|
|
CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5"
|
|
CRISPY_TEMPLATE_PACK = "bootstrap5"
|
|
|
|
# Login URLs
|
|
LOGIN_URL = '/login/'
|
|
LOGIN_REDIRECT_URL = '/dashboard/'
|
|
LOGOUT_REDIRECT_URL = '/login/'
|
|
|
|
# Custom user model
|
|
AUTH_USER_MODEL = 'users.CustomUser'
|
|
|
|
# Session settings
|
|
SESSION_COOKIE_AGE = 3600 # 1 hour
|
|
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
|