-
Notifications
You must be signed in to change notification settings - Fork 4
Adding new input dimension
-
Open https://rowy.beyondallreason.dev/table/maps and click "Add column"
-
Column name: whatever you want, it can be changed later
-
Field key: this is important, name as variables, it's going to be name of field in yaml files
-
Field type: appropriate to what you want to store.
ℹ️Note: Automatically generated fields in Rowy should not be exported to repository, they should be build in repository itself from source columns.
-
-
Fill in data for some/all rows properly
-
Add new property in main/map_list.schema.yaml
- The name of property must what you've set "Field key" to in previous step
- Set the type of property according to the "Field type" set in previous step
-
Run
make update_all_from_rowy
to updatemap_list.yaml
with the data from newly set field in Rowy.All existing contributors to BAR that are in the BAR's Google group should have permission to read data directly from Rowy.
To make sure that script can actually authenticate as you to Firebase, you have to setup gcloud by following https://cloud.google.com/sdk/docs/install. Set default project in gcloud to
rowy-1f075
withgcloud config set project rowy-1f075
. -
Run
make
andmake test
to ensure that all is properly working after the change.