An open API service indexing awesome lists of open source software.

https://github.com/verekia/airtable-export


https://github.com/verekia/airtable-export

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# Airtable Export

## Setup

Create a **.env** file containing:

```env
AIRTABLE_PERSONAL_KEY='keyYOUR_KEY'
AIRTABLE_BASE_ID='appYOUR_BASE_ID'
```

Create a **airtable-export.config.json** file containing your table names and the export file destinations, with an optional view:

```json
{
"tables": [
["Your Table Name 1", "data/your-table-name-1.json", "View Name"],
["Your Table Name 2", "data/your-table-name-2.json"]
]
}
```

Run:

```
npx airtable-export
```