- Handbook
- Company
- Company
- Board & Investors
- Communications
- Decision making and project management
- Guides
- Organizational Structure
- principles
- Remote Work
- Security
- Access Control Policy
- AI Development and Customer Data Policy
- Asset Management Policy
- Business Continuity & Disaster Recovery Policy
- Cryptography Policy
- Data Management Policy
- Hardware Security Policy
- Human Resources Security Policy
- Incident Response Plan
- Information Security Policy and Acceptable Use Policy
- Information Security Roles and Responsibilities
- Operations Security Policy
- Risk Management Policy
- Secure Development Policy
- Third-Party Risk Management Policy
- strategy
- values
- Operations
- Engineering & Design Practices
- Design
- Engineering
- Marketing department
- Marketing
- Internal Operations
- People Ops
- Sales department
- Sales
Setting up a local FF Tables test environment
Postgres instance
FlowFuse Tables relies on a local Postgres instance. The following command assumes you are on Linux.
- Create a directory to hold the database files
- Run the following Docker command (from within that new directory)
docker run -p 5433:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=password -v `pwd`/db:/var/lib/postgresql/data postgres:17
The port has been mapped to 5433 to ensure it doesn't clash with a different postgres instance - add the following to the end of your
etc/flowfuse.local.ymlfiletables: enabled: true driver: type: postgres-localfs options: database: user: root password: password host: localhost port: 5433 database: postgres ssl: false