-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f41f998
commit b30b738
Showing
51 changed files
with
99 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# commit message template | ||
################## | ||
# git config --local commit.template .gitmessage | ||
# git config --local --unset commit.template | ||
# Body와 Footer는 선택사항입니다. | ||
################## | ||
# Type: Subject | ||
|
||
# Body | ||
|
||
# Footer | ||
########Type######## | ||
# feat: 새로운 기능 추가 | ||
# fix: 버그 수정 | ||
# refactor: 코드 리팩토링 | ||
# chore: 빌드 업무 수정, 패키지 매니저 수정, production code와 무관한 부분들 (.gitignore, build.gradle 같은) | ||
# test: 테스트 코드, 리팩토링 테스트 코드 추가 | ||
########Subj######## | ||
# 영어로 Subject 작성 시 | ||
# Add: 추가 | ||
# Remove: 삭제 | ||
# Simplify: 단순화 | ||
# Update: 보완 | ||
# Implement: 구현 | ||
# Prevent: 방지 | ||
# Move: 이동 | ||
# Rename: 이름 변경 | ||
#################### | ||
# 예시 | ||
# feat: Implement JWT | ||
|
||
# 로그인 시 JWT 발급 | ||
|
||
# Resolves: #111 | ||
# Ref: #122 | ||
# related to: #30, #50 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[Docker Container Network Bridge Explanation](https://jangseongwoo.github.io/docker/docker_container_network/) | ||
[Docker Network Basics](https://itbhome.tistory.com/47) | ||
[Standalone Container Networking](https://docs.docker.com/network/network-tutorial-standalone/) | ||
[Bridge network driver](https://docs.docker.com/network/drivers/bridge/) | ||
[Docker Bridge Network](https://medium.com/@augustineozor/understanding-docker-bridge-network-6e499da50f65) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[05. Docker 볼륨](https://captcha.tistory.com/69) |
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM alpine:latest | ||
|
||
RUN apk update && \ | ||
apk add --no-cache openrc php php-fpm php-mbstring &&\ | ||
mkdir -p /var/www/html/ | ||
|
||
WORKDIR /var/www/html | ||
|
||
COPY index.php . | ||
|
||
EXPOSE 8000 | ||
|
||
CMD ["php", "-S", "0.0.0.0:8000", "-t", "/var/www/html"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[Apache - Alpine Linux](https://wiki.alpinelinux.org/wiki/Apache) | ||
[PHP 실행환경 만들기 및 간단 예제 실행](https://velog.io/@tkddnwkdb/PHP-%EC%8B%A4%ED%96%89%ED%99%98%EA%B2%BD-%EB%A7%8C%EB%93%A4%EA%B8%B0) | ||
|
||
`dr -p 8080:80 -it php sh` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<?php | ||
echo 'Hello, PHP on Alpine Docker!'; | ||
?> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Git | ||
|
||
[Git Reference](https://git-scm.com/docs) | ||
|
||
`git help`, `man git`, `git <command> --help` 명령어를 통해 각 명령어의 사용법을 확인할 수 있다. | ||
|
||
## Git Command Workflow | ||
|
||
![](../img/GitWorkflow.png) | ||
|
||
## Git Branch | ||
|
||
### Git Branch Model | ||
- [{Git,Github,Gitlab} Flow 1](https://ujuc.github.io/2015/12/16/git-flow-github-flow-gitlab-flow/) | ||
- [{Git,Github,Gitlab} Flow 2](https://wiki.yowu.dev/ko/dev/Git/about-git-github-gitlab-flow) | ||
- [Trunk Based Development](https://trunkbaseddevelopment.com) | ||
- [Trunk Based Development 기술 블로그](https://tech.mfort.co.kr/blog/2022-08-05-trunk-based-development/) | ||
|
||
### Git Branch Policy | ||
- [Branch Protection Rule](https://docs.github.com/ko/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/managing-a-branch-protection-rule) | ||
- [CODEOWNERS file](https://docs.github.com/ko/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners) | ||
|
||
## Git Command | ||
|
||
[Git - Reference](https://git-scm.com/docs) | ||
|
||
## .gitignore | ||
[github/gitignore: A collection of useful .gitignore templates](https://github.com/github/gitignore) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,3 @@ | ||
# Git | ||
|
||
[Git Reference](https://git-scm.com/docs) | ||
|
||
`git help`, `man git`, `git <command> --help` 명령어를 통해 각 명령어의 사용법을 확인할 수 있다. | ||
|
||
## Git Command Workflow | ||
|
||
![](../img/GitWorkflow.png) | ||
|
||
## Git Branch | ||
|
||
### Git Branch Model | ||
- [{Git,Github,Gitlab} Flow 1](https://ujuc.github.io/2015/12/16/git-flow-github-flow-gitlab-flow/) | ||
- [{Git,Github,Gitlab} Flow 2](https://wiki.yowu.dev/ko/dev/Git/about-git-github-gitlab-flow) | ||
- [Trunk Based Development](https://trunkbaseddevelopment.com) | ||
- [Trunk Based Development 기술 블로그](https://tech.mfort.co.kr/blog/2022-08-05-trunk-based-development/) | ||
|
||
### Git Branch Policy | ||
- [Branch Protection Rule](https://docs.github.com/ko/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/managing-a-branch-protection-rule) | ||
- [CODEOWNERS file](https://docs.github.com/ko/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners) | ||
|
||
## Git Command | ||
|
||
### restore | ||
- `git restore <modified file>` : 파일을 수정하기 전 상태로 되돌린다. | ||
- `git restore --staged <file>` : 스테이징된 파일을 언스테이징한다. | ||
- `git restore --source=<hash> <file>` : 특정 커밋의 파일을 수정하기 전 상태로 되돌린다. | ||
|
||
### fetch | ||
- `git fetch` : 원격 저장소의 변경사항을 로컬 저장소로 가져온다. | ||
|
||
# Github | ||
|
||
## Github Pages | ||
[Github로 프로젝트 관리하기](https://github.com/cheese10yun/github-project-management) |