- Replace ENV vars with proper config system - Add conf/ directory with base, development, production, secrets - Add secrets.example.js template - Update .gitignore for secrets.js - Show environment in startup banner
16 lines
227 B
JavaScript
16 lines
227 B
JavaScript
/**
|
|
* Development environment configuration
|
|
*/
|
|
|
|
module.exports = {
|
|
auth: {
|
|
disabled: true, // Skip auth in dev
|
|
ldap: {
|
|
enabled: false
|
|
}
|
|
},
|
|
|
|
server: {
|
|
// Vite runs on 5173, proxy from there
|
|
}
|
|
}; |