Skip to content

Commit eca65bd

Browse files
author
seungwonme
committed
Update
1 parent f0fd4cb commit eca65bd

File tree

503 files changed

+12323
-76760
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

503 files changed

+12323
-76760
lines changed

.gitignore

+109-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,110 @@
1-
.DS_Store
2-
.vscode
1+
# vite + react
2+
3+
# Logs
4+
logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
pnpm-debug.log*
10+
lerna-debug.log*
11+
312
node_modules
13+
dist
14+
dist-ssr
15+
*.local
16+
17+
# Editor directories and files
18+
.vscode/*
19+
!.vscode/extensions.json
20+
.idea
21+
.DS_Store
22+
*.suo
23+
*.ntvs*
24+
*.njsproj
25+
*.sln
26+
*.sw?
27+
28+
# django
29+
30+
# Icon must end with two \r
31+
Icon
32+
33+
# Thumbnails
34+
._*
35+
36+
# Files that might appear on external disk
37+
.Spotlight-V100
38+
.Trashes
39+
40+
# Directories potentially created on remote AFP share
41+
.AppleDB
42+
.AppleDesktop
43+
Network Trash Folder
44+
Temporary Items
45+
.apdisk
46+
47+
48+
### Python ###
49+
# Byte-compiled / optimized / DLL files
50+
__pycache__/
51+
*.py[cod]
52+
53+
# C extensions
54+
*.so
55+
56+
# Distribution / packaging
57+
venv/
58+
.Python
59+
env/
60+
build/
61+
develop-eggs/
62+
dist/
63+
downloads/
64+
eggs/
65+
lib/
66+
lib64/
67+
parts/
68+
sdist/
69+
var/
70+
*.egg-info/
71+
.installed.cfg
72+
*.egg
73+
74+
# PyInstaller
75+
# Usually these files are written by a python script from a template
76+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
77+
*.manifest
78+
*.spec
79+
80+
# Installer logs
81+
pip-log.txt
82+
pip-delete-this-directory.txt
83+
84+
# Unit test / coverage reports
85+
htmlcov/
86+
.tox/
87+
.coverage
88+
.cache
89+
nosetests.xml
90+
coverage.xml
91+
92+
# Translations
93+
*.mo
94+
*.pot
95+
96+
# Sphinx documentation
97+
docs/_build/
98+
99+
# PyBuilder
100+
target/
101+
102+
### Django ###
103+
*.log
104+
*.pot
105+
*.pyc
106+
__pycache__/
107+
local_settings.py
108+
109+
.env
110+
db.sqlite3

.gitmessage

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# commit message template
2+
##################
3+
# git config --local commit.template .gitmessage
4+
# git config --local --unset commit.template
5+
# Body와 Footer는 선택사항입니다.
6+
##################
7+
# Type: Subject
8+
9+
# Body
10+
11+
# Footer
12+
########Type########
13+
# feat: 새로운 기능 추가
14+
# fix: 버그 수정
15+
# refactor: 코드 리팩토링
16+
# chore: 빌드 업무 수정, 패키지 매니저 수정, production code와 무관한 부분들 (.gitignore, build.gradle 같은)
17+
# test: 테스트 코드, 리팩토링 테스트 코드 추가
18+
########Subj########
19+
# 영어로 Subject 작성 시
20+
# Add: 추가
21+
# Remove: 삭제
22+
# Simplify: 단순화
23+
# Update: 보완
24+
# Implement: 구현
25+
# Prevent: 방지
26+
# Move: 이동
27+
# Rename: 이름 변경
28+
####################
29+
# 예시
30+
# feat: Implement JWT
31+
32+
# 로그인 시 JWT 발급
33+
34+
# Resolves: #111
35+
# Ref: #122
36+
# related to: #30, #50

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12.4

CSS/hamburgerUI/index.html

-28
This file was deleted.

CSS/hamburgerUI/style.css

-111
This file was deleted.

CSS/newCSS/index.html

-36
This file was deleted.

CSS/newCSS/style.css

-41
This file was deleted.

CSS/selectors/index.html

-22
This file was deleted.

0 commit comments

Comments
 (0)