35 lines
662 B
Markdown
35 lines
662 B
Markdown
# Netlify + FaunaDB
|
|
|
|
Example of using FaunaDB with [netlify functions](https://www.netlify.com/docs/functions/)
|
|
|
|
Try it out on your own account via this link:
|
|
|
|
<!-- Markdown snippet -->
|
|
[](https://app.netlify.com/start/deploy?repository=https://github.com/netlify/netlify-faunadb-example)
|
|
|
|
|
|
## Install
|
|
|
|
1. Clone down the repository
|
|
|
|
```bash
|
|
git clone git@github.com:netlify/netlify-faunadb-example.git
|
|
```
|
|
|
|
2. Install the dependencies
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
3. Bootstrap your FaunaDB table
|
|
|
|
```bash
|
|
npm run bootstrap
|
|
```
|
|
|
|
4. Run project locally
|
|
|
|
```bash
|
|
npm start
|
|
```
|