mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-13 17:41:22 +00:00
30 lines
443 B
Plaintext
30 lines
443 B
Plaintext
|
{
|
||
|
base: [
|
||
|
{
|
||
|
name: 'PORT',
|
||
|
value: '8086',
|
||
|
},
|
||
|
{
|
||
|
name: 'NODE_ENV',
|
||
|
value: 'production',
|
||
|
},
|
||
|
{
|
||
|
name: 'BYC_SECRET',
|
||
|
valueFrom: true,
|
||
|
secret: {
|
||
|
name: 'server',
|
||
|
key: 'byc-secret'
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
server_env: $.base + [
|
||
|
{
|
||
|
name: 'HYDRA_SECRET',
|
||
|
valueFrom: true,
|
||
|
secret: {
|
||
|
name: 'server',
|
||
|
key: 'hydra-secret'
|
||
|
},
|
||
|
},
|
||
|
]
|
||
|
}
|