-
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
9d2cf73
commit 8bfa566
Showing
12 changed files
with
145 additions
and
53 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,35 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
max_line_length = 200 | ||
|
||
# 4 space indentation | ||
[*.{py,java,r,R}] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# 2 space indentation | ||
[*.{js,json,y{a,}ml,html,cwl}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.xml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.{md,Rmd,rst}] | ||
trim_trailing_whitespace = false | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[justfile] | ||
indent_style = space | ||
indent_size = 4 |
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,9 @@ | ||
path: ~/tmp/data/maven/ | ||
|
||
repositories: | ||
company-dev: | ||
snapshot: true | ||
overwrite: true | ||
company-prd: | ||
snapshot: false | ||
overwrite: false |
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,8 +1,15 @@ | ||
path: ~/tmp/cachedir/mirror/apt | ||
servers: | ||
- name: official | ||
url: http://archive.ubuntu.com/ubuntu | ||
- name: kakao | ||
url: http://mirror.kakao.com/ubuntu | ||
- name: ubuntu-security | ||
url: http://security.ubuntu.com/ubuntu | ||
path: ~/tmp/mirror/apt | ||
|
||
mirrors: | ||
ubuntu: | ||
official: | ||
url: http://archive.ubuntu.com/ubuntu | ||
kakao: | ||
url: http://mirror.kakao.com/ubuntu | ||
ubuntu-security: | ||
url: http://security.ubuntu.com/ubuntu | ||
debian: | ||
official: | ||
url: http://ftp.debian.org/debian | ||
kakao: | ||
url: http://mirror.kakao.com/debian |
This file was deleted.
Oops, something went wrong.
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,26 @@ | ||
path: ~/tmp/mirror/git | ||
|
||
workpath: ~/mymirror | ||
|
||
# naming은... github/{user}/{repo}를 기본으로 | ||
# 아니면 | ||
# repoanme만 쓸 수 있으면 쓰고.. | ||
# {user}-{repo} 안되는 경우 | ||
|
||
mirrors: | ||
github: | ||
zitryss: | ||
groups: ['go'] | ||
repos: | ||
go-sample: | ||
# branch: master | ||
groups: ['git', 'go'] | ||
PersonaIam: | ||
groups: ['coin'] | ||
repos: | ||
persona-client: | ||
groups: ['coin', 'go'] | ||
streamlit: | ||
groups: ['coin', 'python'] | ||
repos: | ||
streamlit: |
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,8 +1,12 @@ | ||
path: ~/tmp/cachedir/proxy/apt | ||
path: ~/tmp/proxy/apt | ||
use_cache: true | ||
servers: | ||
- name: official | ||
- name: ubuntu | ||
id: ubuntu | ||
url: http://archive.ubuntu.com/ubuntu | ||
- name: kakao | ||
id: kakao | ||
url: http://mirror.kakao.com/ubuntu | ||
- name: ubuntu-security | ||
id: ubuntu-security | ||
url: http://security.ubuntu.com/ubuntu |
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,20 @@ | ||
users: | ||
- name: admin | ||
password: passw0rd | ||
roles: [ admin ] | ||
- name: user | ||
password: passw0rd | ||
roles: [ user, deploy ] | ||
|
||
roles: | ||
admin: | ||
permissions: | ||
- * | ||
developer: | ||
permissions: | ||
- read | ||
- write | ||
- deploy | ||
deployer: | ||
permissions: | ||
- deploy |
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,11 @@ | ||
# Integration 테스트에서 할일 | ||
|
||
- apt | ||
- docker ubuntu 이미지 실행 후 mirror 설정해서 apt update apt upgrade | ||
- 두번 연속 실행으로 빨라지는지 체크 | ||
1. 프록시 안쓰고 두번 실행 | ||
2. 프록시 쓰고 두번 실행 | ||
|
||
- maven | ||
- 패키지 다운로드 | ||
- 패키지 업로드 |
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 @@ | ||
|
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