# Features 
- Build environment variables for NodeJS builds
- Initial monorepo support (more tests needed!)

# Fixes
- Fix wrong redirects
- Logout fix for the session manager
This commit is contained in:
Andras Bacsai
2021-07-16 23:42:14 +02:00
committed by GitHub
parent 2d0f22b379
commit b4c836afbd
33 changed files with 1272 additions and 2194 deletions

View File

@@ -45,7 +45,11 @@ const ConfigurationSchema = new Schema({
domain: { type: String, required: true },
path: { type: String },
port: { type: Number },
secrets: { type: Array }
secrets: [{
name: { type: String },
value: { type: String },
isBuild: { type: Boolean, default: false },
}]
}
});