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',
    ...,
    'django.contrib.sitemaps',
    'shared_lib',
    'markdownx', # 블로그 마크다운에디터
    'hitcount', # 블로그 히트카운터
    'taggit', # 블로그 태그관리
    ...,
    'herobiz',
    ]
    
    # 추가 설정 사항들
    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('herobiz.urls', namespace='herobiz')),
     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/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.11.tar.gz (2.4 MB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for django_herobiz_dental-5.0.11.tar.gz
Algorithm Hash digest
SHA256 a6eb1f0f966ba95feece034288e1854bdab6ed56cb226b7702e103744dd4b7e9
MD5 a97ef0076a33b9e6f1c4edb4d8c80811
BLAKE2b-256 b994b354cccc6aa76e5f17767ab61abb9a88c7340dc5a8df3e6b176d487a9509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for django_herobiz_dental-5.0.11-py3-none-any.whl
Algorithm Hash digest
SHA256 1cb8dc744ab954d1722b7ac9efa225acee1169f416dd7dc6eff8d83ec8d48f12
MD5 75f9c8c2c40a439472fbc3716233869a
BLAKE2b-256 edbdcb20aa6184cbba6fe4a91b72f95453ed03a7099496a821ab19321d9b4a42

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