Netlify + FaunaDB
Example of using FaunaDB with Netlify functions
About this application
This application is using React for the frontend, Netlify Functions for API calls, and FaunaDB as the backing database.
Setup & Run Locally
-
Clone down the repository
git clone git@github.com:netlify/netlify-faunadb-example.git
-
Install the dependencies
npm install
-
Bootstrap your FaunaDB table
npm run bootstrap
-
Set your Fauna API key value in your terminal enviroment
You can create faunaDB keys here: https://dashboard.fauna.com/db/keys
Create
.env
file in the root and add your secret detailsFAUNADB_SERVER_SECRET=YourFaunaDBKeyHere
-
Run project locally
npm start