-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.schema
110 lines (83 loc) · 2.36 KB
/
.env.schema
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# .env.schema, committed to repo
## See https://github.com/keithmorris/node-dotenv-extended/#readme
## ⛔️
## 🚫 DO NOT COMMIT YOUR ACTUAL .env file to version control.
## 🚫 It should only include environment-specific values such
## 🚫 as database passwords or API keys.
## 🚫 Your production database should have a different password
## 🚫 than your development database.
# Codacy
CODACY_PROJECT_TOKEN=
# CodeClimate
CC_TEST_REPORTER_ID=
NODE_ENV=
#
# Product manifest (package.json) variables
#
NPM_PACKAGE_NAME=
NPM_PACKAGE_VERSION=
#
# Gitlab variables
#
GITLAB_ENDPOINT=
GITLAB_PROJECT_ID=
# The name of the branch, tag, or commit SHA with the signatures.json resource.
GITLAB_REF=
GITLAB_RESOURCE=
GITLAB_TOKEN=
K8S_SECRET_GITLAB_TOKEN=
#
# Jest JUnit for JavaScript BDD test suites
# @see https://github.com/jest-community/jest-junit#configuration
#
# name attribute of <testsuites>
# @default "jest tests"
JEST_SUITE_NAME=
# File path to save the output.
# @default "./junit.xml"
JEST_JUNIT_OUTPUT=
# Directory to save the output.
# null
JEST_JUNIT_OUTPUT_DIR=
# File name for the output.
# @default "./junit.xml"
JEST_JUNIT_OUTPUT_NAME=
# Template string for name attribute of the <testsuite>.
# @default "{title}"
JEST_JUNIT_SUITE_NAME=
# Template string for the classname attribute of <testcase>.
# @default "{classname} {title}"
JEST_JUNIT_CLASSNAME=
# Template string for the name attribute of <testcase>.
# @default "{classname} {title}"
JEST_JUNIT_TITLE=
# Character(s) used to join the describe blocks.
# @default " "
JEST_JUNIT_ANCESTOR_SEPARATOR=
# DEPRECATED. Use suiteNameTemplate instead. Use file path as the name attribute of <testsuite>
# @default "false"
JEST_USE_PATH_FOR_SUITE_NAME=
## Rollup.js
BUILD=
INCLUDE_DEPS=
#
# SonarCloud variables (CI/CD code analysis)
#
# Name of the current working branch.
# This is a short-lived branch
# corresponding to Merge/Pull Requests, feature, and fix branches.
# To get the current working branch name, run:
# npm --loglevel silent run vars:git:branch:name
# @see https://sonarcloud.io/documentation/branches/overview/
# The default branch of the repository; it should almost always
# be "master".
SONAR_BRANCH_NAME=
K8S_SECRET_SONAR_TOKEN=
SONAR_BRANCH_TARGET=
SONAR_HOST_URL=
SONAR_ORGANIZATION=
SONAR_PROJECT_DESCRIPTION=
SONAR_PROJECT_KEY=
SONAR_PROJECT_NAME=
SONAR_PROJECT_VERSION=
SONAR_TOKEN=