Tableaux (pronounced /ta.blo/) is a restful service for storing data in tables. This project contains a generic React-based HTML5 client for the tableaux backend.
Go to project directory and execute:
npm install
Go to project directory and execute:
npm run dev
The redux store can hold a lot of data, which can slow down redux devtools severely. So when you have redux devtools installed and run into trouble while developing in large tables, you can try running with
REDUX_DEVTOOLS=false npm run dev
Go to project directory and execute:
npm run clean && npm run build
npm run
start # create production bundle and serve at serverPort
build # create production bundle
dev # create dev bundle and serve it at serverPort
lint # lint all project source files
lint:changes # lint all differences to master
lint:fix # apply automated lint fixes to all project source files
lint:fix:changes # fix all changes to master
storybook # start storybook
test # run tests with jest
clean # clean build cache and out directory
clean:project # clean build cache and out directory, reinstall all dependencies
Default project configuration can be overwritten via a config.json
in the base directory or via environment variables.
{
"outDir": "out", // build artefacts go here
"host": "localhost", // host of the http frontend
"port": 3000, // port for the http frontend
"apiHost": "localhost", //
"apiPort": 8080, // port of the backend service
"webhookUrl": "..", // url for Slack webhook to receive user feedback
"authServerUrl": "http://localhost:8081/auth", // Keycloak
"authRealm": "GRUD", // Keycloak realm
"authClientId": "grud-frontend", // Keycloak clientId
"disableAuth": true // disable authentication for frontends behind old proxy (default: false)
}
Environment variables can be used to start multiple instances, listening on multiple ports.
Following variable names can be used:
- HOST
- PORT
- APIHOST
- APIPORT
- OUTDIR
- WEBHOOKURL
- REDUX_DEVTOOLS=[true,false] # "false" disable dev tools integration for dev performance. Default: true
- ENABLE_HISTORY=[true,false] # Show or hide cell history button in context menu. Default: true
- SHOW_TABLE_DROPDOWN=[true,false] # Show confusing table settings dropdown. Default: true
- AUTH_SERVER_URL
- AUTH_REALM
PORT=3001 npm run start
Something like this:
npm ERR! Traceback (most recent call last):
npm ERR! File "/Users/xxx/.nvm/versions/node/v20.5.1/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py", line 42, in <module>
npm ERR! import gyp # noqa: E402
npm ERR! ^^^^^^^^^^
This is because distutils
has been removed in Python v3.12. You can fix this by downgrade/installing Python v3.11.
The simplest and flexible way to manage Python versions is to use pyenv
. Install it and use a .python-version
file in the project root to specify the version.
Copyright 2016-present Campudus GmbH.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.