Go to file
Gorbunov Kirill Andreevich 8a85fce0a9 Merge branch 'master-1'
# Conflicts:
#	cmd/pkgdashcli/main.go
#	go.mod
#	go.sum
#	internal/cli/init.go
#	internal/source/gitea/gitea.go
2024-03-25 23:28:28 +03:00
cmd Merge branch 'master-1' 2024-03-25 23:28:28 +03:00
internal Merge branch 'master-1' 2024-03-25 23:28:28 +03:00
proto regen proto 2023-10-18 00:39:27 +03:00
ui updates 2023-09-23 21:16:26 +03:00
.gitignore #8 remove .gitea. 2024-03-23 19:01:07 +03:00
LICENSE #8 return License. 2024-03-23 18:53:52 +03:00
Makefile Merge branch 'master-1' 2024-03-25 23:28:28 +03:00
README.md #8 add cli, need fix parse yaml. 2024-03-23 18:52:13 +03:00
generate.go initial rewrite, use micro v4 and not cms-xxx stuff 2023-08-11 21:27:38 +03:00
generate.sh init ui 2023-08-12 16:24:50 +03:00
go.mod #8 go.mod. 2024-03-24 20:39:55 +03:00
go.sum Merge remote-tracking branch 'upstream/master' 2024-03-24 20:39:37 +03:00
local.yaml use worker 2023-08-18 23:59:15 +03:00

README.md

pkgdash

pkgdashcli

Installation

Use any of the following for a pain-free installation:

  • If you have go installed, you can run:
    go install git.unistack.org/unistack-org/pkgdash/cmd/pkgdashcli@latest
    

Config

Before starting, you should fill out the configuration file. The file must be located in the .gitea, .gitlab, .github directory according to the git type you are using.

  • branches - array of main branches
  • source - information about the version control system
  • source.type - type of version control system
  • source.apiurl - path to the version control system api
  • source.repository - repository name
  • source.owner - username of the repository owner
  • update_opt - dependency update options
  • update_opt.pre - update to pre-release versions
  • update_opt.major - compare only major versions in modules
  • update_opt.up_major - raise the version according to major
  • update_opt.cached - caching

Config.Example

# .gitea/pkgdashcli.yaml
branches: [master]
source:
  type: gitea
  apiurl: https://git.unistack.org/api/v1
  repository: pkgdash
  owner: unistack
update_opt:
  pre: false
  major: false
  up_major: false
  cached: true