-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathgitea.env
More file actions
31 lines (25 loc) · 1.07 KB
/
gitea.env
File metadata and controls
31 lines (25 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
####################################################################### GITEA Env vars #######################################################################
GITEA_HOST="localhost"
GITEA_HOST_URL="https://localhost:3000"
GITEA_API=${GITEA_HOST_URL}"/api/v1"
# Configuration
# Adjust this to match your Git-EA org
GITEA_MAIN_REPO_NAME="cogstack-nifi"
GITEA_USER="cogstack"
GITEA_ORG="cogstack_org"
GITEA_NAMESPACE_URL="ssh://git@localhost:2222/${GITEA_ORG}"
GITEA_BASE_URL="${GITEA_NAMESPACE_URL}/${GITEA_MAIN_REPO_NAME}.git"
# this token is a sample, create yours
# navigate to https://localhost:3000/user/settings/applications/
# this is a sample token, you should create your own
GITEA_TOKEN=""
GITEA_SUBMODULE_DIR="services"
GITEA_LOCAL_KEY_PATH="$HOME/.ssh/id_rsa_gitea_cogstack"
GITEA_LOCAL_PUB_KEY_PATH="$GITEA_LOCAL_KEY_PATH.pub"
GITEA_LOCAL_KEY_TITLE="gitea-cogstack-$(hostname)-$(date +%s)"
GITEA_DEFAULT_MAIN_REMOTE_NAME="cogstack-gitea"
GITEA_DOCKER_SHM_SIZE=512m
GITEA_DOCKER_IMAGE=gitea/gitea:1.25-rootless
GITEA_DOCKER_CPU_MIN=1
GITEA_DOCKER_CPU_MAX=1
GITEA_DOCKER_RAM=1g