mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-22 09:01:09 +03:00
a9e269b52c
- use logger.xxx instead of console.xxx - added express middleware logging (using jsonl) - added LOG_PATH as environment variable - more configs postponed for later iteration
46 lines
388 B
Plaintext
46 lines
388 B
Plaintext
# editor
|
|
.idea
|
|
.vscode
|
|
|
|
# dependencies
|
|
**/node_modules
|
|
**/package-lock.json
|
|
**/yarn.lock
|
|
|
|
## logs
|
|
logs/**/*
|
|
**/*.log
|
|
|
|
## build
|
|
**/dist
|
|
**/build
|
|
|
|
## temp
|
|
**/tmp
|
|
**/temp
|
|
|
|
## test
|
|
**/coverage
|
|
|
|
# misc
|
|
.DS_Store
|
|
|
|
## env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env
|
|
|
|
## turbo
|
|
.turbo
|
|
|
|
## secrets
|
|
**/*.key
|
|
**/api.json
|
|
|
|
## uploads
|
|
**/uploads
|
|
|
|
## compressed
|
|
**/*.tgz |