Skip to content

jak010/django-base-configure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django SandBox Template

  • Last Update: 2025.06.20

Table Of Contents

Purpose

  • 초기 django project를 template으로 만들고 가져다 쓰기

Enviornment

  • Python 3.11.5

Structure

Feature

SOURCE TREE

  • SOURCE TREE
    ╰─$ tree -L 4 -I "*.pyc" -I "__pycache__" -I "venv"
    .
    ├── Makefile
    ├── readme.md
    ├── requirements.txt
    └── src
        ├── __init__.py
        ├── apps
        │   ├── __init__.py
        │   ├── admin.py
        │   ├── apps.py
        │   ├── migrations
        │   │   ├── 0001_initial.py
        │   │   └── __init__.py
        │   ├── models
        │   │   ├── __init__.py
        │   │   ├── abstract.py
        │   │   └── sample.py
        │   ├── tests.py
        │   ├── urls.py
        │   └── views
        │       ├── __init__.py
        │       └── greeting.py
        ├── config
        │   ├── __init__.py
        │   ├── asgi.py
        │   ├── settings
        │   │   ├── __init__.py
        │   │   ├── base.py
        │   │   └── local.py
        │   ├── urls.py
        │   └── wsgi.py
        ├── manage.py
        ├── pytest.ini
        └── test
            ├── __init__.py
            ├── conftest.py
            └── test_sample.py
    
    

About

django 프로젝트 초기 템플릿

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published