netlify-faunadb-example2/README.md
2018-06-28 17:55:20 -07:00

1.3 KiB

Netlify + FaunaDB

Example of using FaunaDB with Netlify functions

Deploy this app with one-click via this link:

Deploy to Netlify

About this application

This application is using React for the frontend, Netlify Functions for API calls, and FaunaDB as the backing database.

faunadb netlify

Install

  1. Clone down the repository

    git clone git@github.com:netlify/netlify-faunadb-example.git
    
  2. Install the dependencies

    npm install
    
  3. Bootstrap your FaunaDB table

    npm run bootstrap
    
  4. Set your Fauna API key value in your terminal enviroment

    You can create faunaDB keys here: https://dashboard.fauna.com/db/keys

    In your terminal run the following command:

    export FAUNADB_SECRET=YourFaunaDBKeyHere
    
  5. Run project locally

    npm start