Sidney Alcantara 1503bc45da Merge branch 'master' into develop
* master: (46 commits)
  derivative column field renderer
  derivative column config UI
  reposition table fav button
  noreferrer typo
  fix connect table field configuration
  fix: csv import supporting the new columns structure
  fix:adding new columns to the end of the table
  fix: prevent table settings from crashing when roles are empty
  fix: update column options mapping in filters
  create and update table settings
  fix sideDrawer single select
  fix side drawer
  column restructure migration button
  update table connect popper
  tableConnect and subtable columns settings
  column setttings setup+ single/multiselect fields
  delete github workflow
  docker using yarn
  dockerfile test2
  docker typo
  ...
2020-07-10 13:55:37 +10:00
2020-03-18 16:09:08 +08:00
2020-07-09 23:50:03 +08:00
2020-06-29 16:27:29 +08:00
2020-01-20 15:22:19 +11:00
2020-04-30 15:12:14 +08:00
2020-07-02 14:39:20 +08:00
2019-10-02 11:54:03 +10:00
2020-06-21 12:21:47 +08:00
2020-06-27 12:27:40 +08:00
2020-05-11 15:36:50 +08:00

Firetable

Firetable is a spreadsheet-like UI for Firestore.

No more building admin portals to let business users to access data from Google Cloud.

Commit

Firetable UI

Supports fields such as images, files, single/multi select, in addition to standard fields. Functions such as row resizing, data import/export are supported. More coming soon, for comprehensive list see ROADMAP.md.

Firetable screenshot

Setup instructions

1. Create a Firebase project (Instructions)

  • Create a Firestore database
  • Set up Firestore Security Rules: use Test Mode or set up required permissions. Below are sample rules that allow for unlimited access to the entire database:
    rules_version = '2';
    service cloud.firestore {
      match /databases/{database}/documents {
        match /{document=**} {
          allow read, write: if true;
        }
      }
    }
    
  • Upgrade project to the Blaze Plan
  • Enable the Google sign-in method in Authentication / Sign-in method

2. Clone this repo

git clone https://github.com/AntlerVC/firetable.git

3. Set React app environment variables

Create a .env file in the www directory

  • Get the Firebase Project ID and Web API Key from your Firebase Projects Settings page. Click the cog icon on the left sidebar (under the Firebase logo) and click Project settings

  • (optional) Get the generated Application ID and Search-Only API Key from the Algolia API Keys page

REACT_APP_FIREBASE_PROJECT_ID=
REACT_APP_FIREBASE_PROJECT_WEB_API_KEY=
REACT_APP_ALGOLIA_APP_ID=
REACT_APP_ALGOLIA_SEARCH_API_KEY=

4. Install front-end dependencies

cd www
yarn

5. Run project locally

yarn start

Issues

Please create issues here.
Make sure to provide console log outputs and screenshots!

Roadmap and feature requests


About Antler Engineering

Firetable is created and being actively developed by Antler Engineering.

At Antler, we identify and invest in exceptional people.

Were a global startup generator and early-stage VC firm that builds groundbreaking technology companies.

Apply now to be part of a global cohort of tech founders.

Description
Low-code backend platform. Manage database on spreadsheet-like UI and build cloud functions workflows in JS/TS, all in your browser. rowy.io
Readme Apache-2.0 26 MiB
Languages
TypeScript 99.5%
JavaScript 0.3%
HTML 0.2%