Main API on customer VPS (user mgmt, creds, login, mail etc ...)
![]() |
6 ay önce | |
---|---|---|
app | 6 ay önce | |
common | 6 ay önce | |
config | 6 ay önce | |
database | 6 ay önce | |
design | 6 ay önce | |
docs | 6 ay önce | |
internal | 6 ay önce | |
logger | 6 ay önce | |
pkg | 6 ay önce | |
.gitignore | 6 ay önce | |
README.md | 6 ay önce | |
config.yaml | 6 ay önce | |
go.mod | 6 ay önce | |
go.sum | 6 ay önce | |
main.go | 6 ay önce |
.
├── app
│ ├── server.go
│ └── middleware.go
├── common
│ ├── models.go
│ ├── errors.go
│ └── utils.go
├── config
│ ├── config.go
│ └── validator.go
├── database
│ ├── client.go
│ └── migrations
├── design
│ ├── handlers.go
│ ├── service.go
│ ├── repository.go
│ ├── models.go
│ └── interfaces.go
├── docs
├── internal
│ └── cache
├── logger
├── pkg
│ ├── apiclient
│ └── validator
└── main.go
Install dependencies:
go mod download
Run the application:
go run main.go
Configuration is stored in config.yaml
.
...