Skip to main content

Demiansoft template(herobiz)

Project description

django_herobiz_dental

demiansoft herobiz 템플릿 다른 템플릿과 차이는 색살을 고를수 있다는 것 ['', '-blue', '-green', '-orange', '-purple', '-red', '-pink']

설치

  1. pip를 이용해서 앱 설치
    pip install django_herobiz_dental
    
  2. 프로젝트 settings.py에 앱 등록
    import os
    
    INSTALLED_APPS = [
    "jazzmin", # 관리자 페이지 UI
    'django.contrib.admin',
    ...,
    'shared_lib',
    'markdownx', # 블로그 마크다운에디터
    'hitcount', # 블로그 히트카운터
    'taggit', # 블로그 태그관리
    ...,
    'herobiz',
    ]
    
    # 모델에서 이미지 저장을 위해
    MEDIA_URL = '/media/'
    MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
    
    STATIC_URL = '/static/'
    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('', include('herobiz.urls', namespace='herobiz')),
     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/herobiz.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_herobiz_dental-5.0.5.tar.gz (2.4 MB view details)

Uploaded Source

Built Distribution

django_herobiz_dental-5.0.5-py3-none-any.whl (2.5 MB view details)

Uploaded Python 3

File details

Details for the file django_herobiz_dental-5.0.5.tar.gz.

File metadata

File hashes

Hashes for django_herobiz_dental-5.0.5.tar.gz
Algorithm Hash digest
SHA256 50f95c91d3ea1f21a95703abf82ee79fcd800e10e5acb66d613c2a42595011cf
MD5 08a65e565854fa2c46d102d2eaabac0b
BLAKE2b-256 713e3be8e4498e4f42446d4af1c225c688a568b9c8c86cc029dea24cfa7875de

See more details on using hashes here.

File details

Details for the file django_herobiz_dental-5.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for django_herobiz_dental-5.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 3b969cf024a3ce838d096825516e1a21493fe2c510aea8f85134d4693ff6ffcc
MD5 4e62c2c4da8fb1a207a744dd3ea6209e
BLAKE2b-256 4d13ff0581a0768e41da1a27a80958f645e61eab22dafc55f51aa38f61297e69

See more details on using hashes here.

Supported by

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