Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timdavish/airtable-starter
A boilerplate for Airtable, Node & React applications.
https://github.com/timdavish/airtable-starter
airtable boilerplate nodejs reactjs
Last synced: 2 days ago
JSON representation
A boilerplate for Airtable, Node & React applications.
- Host: GitHub
- URL: https://github.com/timdavish/airtable-starter
- Owner: timdavish
- License: mit
- Created: 2018-02-02T23:26:03.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-07T15:07:14.000Z (almost 7 years ago)
- Last Synced: 2024-08-02T00:21:28.290Z (3 months ago)
- Topics: airtable, boilerplate, nodejs, reactjs
- Language: JavaScript
- Homepage:
- Size: 61.5 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Airtable Starter
A boilerplate for [Airtable](https://airtable.com/), Node & React applications.
## Getting Started
### The Project Source
```bash
$ cd ~/Projects/
$ git clone --depth=1 [email protected]:timdavish/airtable-starter.git myproject
$ cd myproject/
$ direnv allow
$ npm install
```You can then delete the `.git` directory and run `git init` to initialize the project as it's own git repository.
### Configuring Airtable
Edit the `.env` file, adding your Airtable API key, base, and table which can be found [here](https://airtable.com/api). This file looks like this:
```bash
export AIRTABLE_API_KEY=
export AIRTABLE_API_VERSION=0.1.0
export AIRTABLE_API_URL=https://api.airtable.com/v0
export AIRTABLE_BASE=
export AIRTABLE_TABLE=
```### Run the App
```bash
$ npm start
```