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.1.0.tar.gz (2.4 MB view details)

Uploaded Source

Built Distribution

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

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: django_herobiz_dental-5.1.0.tar.gz
  • Upload date:
  • Size: 2.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.3

File hashes

Hashes for django_herobiz_dental-5.1.0.tar.gz
Algorithm Hash digest
SHA256 518dd02a9f38c7392c3f4ab95df5bf3a5f7df8297614ccd7bc57af1f1c76ad65
MD5 d39ae2ad6d28f5908664139b38007934
BLAKE2b-256 0d027422b350d11ecd02f0fd8264f3e875597347f347f72dbf7ead19a2322306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for django_herobiz_dental-5.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fa542c013e519f1a398fcba6e72e2848c90a43880a8e579868dd8f0f6a05102c
MD5 9c56c1a6275fc7e2d501790901177c24
BLAKE2b-256 3877df0b2c0b6d7108502de0ea2098098381ab4e1c32d49b5506dd04bba0fd27

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