Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Karzoug committed Jul 26, 2023
0 parents commit 0e7e7e6
Show file tree
Hide file tree
Showing 7 changed files with 84 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Binaries
client/cmd/client
server/cmd/server

# Dependency directories (remove the comment below to include it)
# vendor/

# Go workspace file
go.work*
44 changes: 44 additions & 0 deletions .golangci.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[run]
timeout = "5m"
concurrency = 4
tests = false

[linters-settings.exhaustive]
default-signifies-exhaustive = true

[linters-settings.revive]
ignore-generated-header = false
severity = "warning"
confidence = 0.8

[linters-settings.goimports]
local-prefixes = "github.com/Karzoug/goph_keeper"

[linters]
disable-all = true
enable = [
"bodyclose",
"dogsled",
"dupl",
"errcheck",
"goimports",
"goprintffuncname",
"gosec",
"gosimple",
"govet",
"ineffassign",
"misspell",
"exportloopref",
"staticcheck",
"stylecheck",
"typecheck",
"unconvert",
"unused",
"whitespace",
"gocyclo",
"exhaustive",
"typecheck",
"asciicheck",
"errorlint",
"revive",
]
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Менеджер паролей GophKeeper

GophKeeper представляет собой клиент-серверную систему, позволяющую пользователю надёжно и безопасно хранить логины, пароли, бинарные данные и прочую приватную информацию.
3 changes: 3 additions & 0 deletions client/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/Karzoug/goph_keeper/client

go 1.20
3 changes: 3 additions & 0 deletions common/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/Karzoug/goph_keeper/common

go 1.20
3 changes: 3 additions & 0 deletions pkg/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/Karzoug/goph_keeper/pkg

go 1.20
3 changes: 3 additions & 0 deletions server/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/Karzoug/goph_keeper/server

go 1.20

0 comments on commit 0e7e7e6

Please sign in to comment.