Skip to content

Commit 5e45f44

Browse files
committed
feat: major update
1 parent 1943ca3 commit 5e45f44

Some content is hidden

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

92 files changed

+4539
-1930
lines changed

.dockerignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# name - exclude file/dir "name" in project root
2+
# **/name - exclude file/dir "name" in project root or any subdir
3+
# !name - include previously excluded "name"
4+
# a*b?c/d[0-9]e[^a-z\]]f\[g - pattern
5+
*
6+
!bin

.gitattributes

+11
Original file line numberDiff line numberDiff line change
@@ -1 +1,12 @@
1+
# /name - apply (* doesn't match /) to file "name" beginning in project root
2+
# na/me - apply (* doesn't match /) to file "na/me" anywhere
3+
# name - apply (* do match /) to file "name" anywhere
4+
# name/** - apply … to dir …
5+
# **/name - apply (* doesn't match /) to file "name" in any dir including project root
6+
# na/**/me - apply (* doesn't match /) to file "na/me", "na/*/me", "na/*/*/me", …
17
go.sum binary
8+
*.*.go binary
9+
/api/**/model/** binary
10+
/api/**/restapi/** binary
11+
/api/**/restapi/configure_*.go -binary
12+
/api/**/client/** binary

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@
66
# na/**/me - exclude path (* doesn't match /) to file/dir "na/me", "na/*/me", "na/*/*/me", …
77
# !name - include previously excluded path …
88
/bin/
9+
/env.sh
10+
/cover.out

0 commit comments

Comments
 (0)