WORKDIR="/root/p-lens-dashboard" cd $WORKDIR
######################################################################
######################################################################
pip install --upgrade pip pip install -r requirements.txt
######################################################################
######################################################################
django-admin startproject frontend .
######################################################################
######################################################################
django-admin startapp dashboard
######################################################################
######################################################################
INSTALLED_APPS = [ .., 'rest_framework', # djangorestframework 'corsheaders', # cors 'dashboard.apps.DashboardConfig', # app - dashboard ]
ALLOWED_HOSTS = []
TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], ... }, ]
TIME_ZONE = 'Asia/Seoul' USE_TZ = True
STATIC_URL = '/static/' STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static')]
######################################################################
######################################################################
touch index.html