Skip to main content

Demiansoft template(mentor)

Project description

django_mentor_myenglishkr

demiansoft mentor 템플릿 다른 템플릿과 차이는 다국어 지원을 한다는 것

설치

  1. pip를 이용해서 앱 설치
    pip install django_mentor_myenglishkr
    
  2. 프로젝트 settings.py에 앱 등록
    import os
    
    INSTALLED_APPS = [
    "jazzmin", # 관리자 페이지 UI
    'django.contrib.admin',
    ...,
    'django.contrib.sitemaps',
    'shared_lib',
    'markdownx', # 블로그 마크다운에디터
    'hitcount', # 블로그 히트카운터
    'taggit', # 블로그 태그관리
    ...,
    'compressor',
    'mentor',
    ]
    
    import os
    # compressor 설정
    COMPRESS_ENABLED = True
    COMPRESS_OFFLINE = False
    COMPRESS_PRECOMPILERS = (
        ('text/x-scss', 'django_libsass.SassCompiler'),
    )
    
    STATICFILES_FINDERS = [
        'django.contrib.staticfiles.finders.FileSystemFinder',
        'django.contrib.staticfiles.finders.AppDirectoriesFinder',
        'compressor.finders.CompressorFinder',  # 이 줄을 추가해야 합니다.
    ]
    
    
    # 추가 설정 사항들
    import os
    
    X_FRAME_OPTIONS = 'DENY' # 클릭재킹공격 방지 보안설정
    
    STATICFILES_DIRS = [
        os.path.join(BASE_DIR, '_static/'),
    ]
    
    MEDIA_URL = '/media/'
    MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
    
    STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
    
    from _data import shared_lib
    JAZZMIN_SETTINGS = shared_lib.JAZZMIN_SETTINGS
    MARKDOWNX_MARKDOWN_EXTENSIONS = shared_lib.MARKDOWNX_MARKDOWN_EXTENSIONS
    MARKDOWNX_MARKDOWN_EXTENSION_CONFIGS = shared_lib.MARKDOWNX_MARKDOWN_EXTENSION_CONFIGS
    MARKDOWNX_UPLOAD_MAX_SIZE = shared_lib.MARKDOWNX_UPLOAD_MAX_SIZE
    MARKDOWNX_UPLOAD_CONTENT_TYPES = shared_lib.MARKDOWNX_UPLOAD_CONTENT_TYPES
    MARKDOWNX_IMAGE_MAX_SIZE = shared_lib.MARKDOWNX_IMAGE_MAX_SIZE
    
  3. 프로젝트 urls.py에 다음을 추가한다.
    from django.urls import path, include
    from shared_lib import utils
    
    urlpatterns = [
     # robots.txt는 반드시 가장 먼저
     path('robots.txt', utils.robots),
     path('admin/', admin.site.urls),
     path('', include('mentor.urls', namespace='mentor')),
     path('shared_lib/', include('shared_lib.urls', namespace='shared_lib')),
     path('markdownx/', include('markdownx.urls')),
    ]
    
    # 개발 환경에서 미디어 파일 서빙
    from django.conf import settings
    from django.conf.urls.static import static
    
    if settings.DEBUG:
     urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
    
  4. 프로젝트에 media/폴더를 생성하고 default_modal.bg.webp를 넣어 모달 기본배경으로 사용한다.
  5. 모델 마이그레이션 생성(모달, 캘린더, 포트폴리오, 블로그 모델 설치)
    python manage.py makemigrations
    
  6. 마이그레이션 적용
    python manage.py migrate
    
  7. _data/shared_lib.py 와 _data/mentor.py에 데이터 준비

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_mentor_myenglishkr-5.1.0.tar.gz (4.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_mentor_myenglishkr-5.1.0-py3-none-any.whl (4.3 MB view details)

Uploaded Python 3

File details

Details for the file django_mentor_myenglishkr-5.1.0.tar.gz.

File metadata

File hashes

Hashes for django_mentor_myenglishkr-5.1.0.tar.gz
Algorithm Hash digest
SHA256 5a8cfa6f85e88ca1bd71601afe61707523771b858b32307727cba1673a047af0
MD5 9a3386d42f3e9869817555d9c48ee5ca
BLAKE2b-256 dfa79998dc1cdb763e751e581a2e08c8698d05745309fa2a17f02005c382e883

See more details on using hashes here.

File details

Details for the file django_mentor_myenglishkr-5.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_mentor_myenglishkr-5.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c1ad911dad5248e80c9e2c7d3b5622827548d3c626016873e65c06960942385e
MD5 94d224545499557fbc6ab478ac527d19
BLAKE2b-256 2eff999b78d8fe008ae4bc9653c33a2d6eaef0f8f13c7a1386c02de4f37d45b4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page