2019-10-02 14:06:44 +10:00
2019-10-02 13:46:00 +10:00
2019-10-02 13:56:06 +10:00
2019-10-01 15:30:24 +10:00
2019-09-22 22:12:43 +10:00
2019-10-02 11:54:03 +10:00
2019-10-02 11:13:45 +10:00
2019-10-02 14:06:44 +10:00

Firetable

Firetable is a simple CMS for Google Cloud Firestore.

Setup instructions

1) Create a firebase project

  • enable firestore
  • enable google auth

2) Create an algolia project

3) Setup cloud functions

firebase functions:config:set algolia.appid=YOUR_APP_ID algolia.apikey=ADMIN_API_KEY

Deploy the following callable cloud functions to update and delete algolia records

const functions = require("firebase-functions");
const env = functions.config();
const algolia = require("algoliasearch");
exports.updateAlgoliaRecord = functions.https.onCall(async (data, context) => {
    const client = algolia(env.algolia.appid, env.algolia.apikey);
    const index = client.initIndex(data.collection);
    await index.partialUpdateObject(Object.assign({ objectID: data.id }, data.doc));
    return true;
});

exports.deleteAlgoliaRecord = functions.https.onCall(async (data, context) => {
    const client = algolia(env.algolia.appid, env.algolia.apikey);
    const index = client.initIndex(data.collection);
    await index.deleteObject(data.id);
    return true;
});

4) Clone repo

5) Set environment variables

Add .env file to the project directory

REACT_APP_FIREBASE_PROJECT_NAME =
REACT_APP_FIREBASE_PROJECT_KEY =
REACT_APP_ALGOLIA_APP_ID =
REACT_APP_ALGOLIA_SEARCH_KEY =

6) Install dependencies

yarn

7) Run project locally

yarn start
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%