Spaces:
Sleeping
Sleeping
| module.exports = { | |
| adminAuth: { | |
| type: "credentials", | |
| users: [{ | |
| username: process.env.NODE_RED_USERNAME || "admin", | |
| password: process.env.NODE_RED_PASSWORD, | |
| permissions: "*" | |
| }] | |
| }, | |
| credentialSecret: "spaziogenesi", | |
| httpServerOptions: { | |
| host: "0.0.0.0" | |
| }, | |
| httpNodeCors: { | |
| origin: "*", | |
| methods: "GET,PUT,POST,DELETE" | |
| } | |
| } |