mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-09 16:11:23 +00:00
31 lines
445 B
Plaintext
31 lines
445 B
Plaintext
{
|
|
base: [
|
|
{
|
|
name: 'PORT',
|
|
value: '8086',
|
|
},
|
|
{
|
|
name: 'NODE_ENV',
|
|
value: 'production',
|
|
},
|
|
{
|
|
name: 'RESF_SECRET',
|
|
valueFrom: true,
|
|
secret: {
|
|
name: 'server',
|
|
key: 'byc-secret'
|
|
},
|
|
},
|
|
],
|
|
server_env: $.base + [
|
|
{
|
|
name: 'HYDRA_SECRET',
|
|
valueFrom: true,
|
|
secret: {
|
|
name: 'server',
|
|
key: 'hydra-secret'
|
|
},
|
|
},
|
|
]
|
|
}
|