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

https://github.com/arvind-4/integrate-airtable-and-flask

Make a Landing Page using Airtable and Flask
https://github.com/arvind-4/integrate-airtable-and-flask

airtable-api api bootstrap5- css3 flask html5 python

Last synced: about 2 months ago
JSON representation

Make a Landing Page using Airtable and Flask

Awesome Lists containing this project

README

          

# Integrate Airtable & Flask

A Landing Page made with Flask and Airtable.

### Demo:

Click [Here](http://integrate-airtable-and-flask.vercel.app/ "integrate-airtable-and-flask.vercel.app") to View the Website.

Hosted on [Vercel](https://vercel.com).

### Running it Locally:

#### Step 1: Create a Virtual Environment

```bash
pip3 install venv
cd ~/Dev
mkdir flask-airtable
cd flask-airtable
python3 -m venv .
source bin/activate
```
**For Windows us `.\Scripts\activate`**

#### Step 2: Clone Repository:

```bash
cd ~/Dev/flask-airtable
git clone https://github.com/Arvind-4/Integrate-Airtable-and-Flask.git .
```

#### Step 3: Install Requirements:

```bash
pip install -r requirements.txt
```

#### Step 4: Run the Code:

```bash
cd ~/Dev/flask-airtable
bash run.sh
```