c12a745929
In some cases there are needs to authenticate user not in Taskcafe itself. For this reason option server.remote_user_header was added. ```toml [server] remote_user_header = "X-Remote-User" ``` With turned on Taskcafe listens X-Remote-User http header and skip password checking. But still check user existence and activity flag.
25 lines
472 B
YAML
25 lines
472 B
YAML
name: taskcafe
|
|
root: .
|
|
|
|
windows:
|
|
- services:
|
|
root: ./
|
|
panes:
|
|
- api:
|
|
- go run cmd/taskcafe/main.go web
|
|
- yarn:
|
|
- cd frontend
|
|
- yarn start
|
|
- web/editor:
|
|
root: ./frontend
|
|
panes:
|
|
- vim src/index.tsx
|
|
- api/editor:
|
|
root: ./
|
|
panes:
|
|
- vim cmd/taskcafe/main.go
|
|
- database:
|
|
root: ./
|
|
panes:
|
|
- pgcli postgres://taskcafe:taskcafe_test@localhost:8865/taskcafe
|