16 lines
465 B
Bash
16 lines
465 B
Bash
#!/usr/bin/env bash
|
|
|
|
# GitLab
|
|
GL_DOMAIN="https://gitlab.alfter.us"
|
|
GL_CR_DOMAIN="https://cr.gitlab.alfter.us"
|
|
GL_USER="salfter"
|
|
GL_TOKEN="glpat-PUT-YOUR-GITLAB-PERSONAL-ACCESS-TOKEN-HERE"
|
|
# a token with read-only access is sufficient
|
|
|
|
# Gitea
|
|
GT_DOMAIN="https://git.alfter.us"
|
|
# Gitea serves container images on the same domain, so GT_CR_DOMAIN isn't needed
|
|
GT_USER="salfter"
|
|
GT_TOKEN="PUT-YOUR-GITEA-ACCESS-TOKEN-HERE"
|
|
# a token with read/write access is required
|