In this tutorial, I will show you how I connect my personal website with an Airtable database.
If you want to see how I set up the Airtable database, you can go to the first post.
1- Create React App
1.1 Go to my Personal web page source code
In this tutorial, we will clone my personal web page.
1.2 Clone Repository
First, you should select your local file for this project
mkdir mysitecd mysitegit clone https://github.com/enesefes/MyWebPagecd MyWebPage
Thatβs it We created a new project on our local computer
1.3 Npm Install
We will add node package manager
npm install
1.4 Run the project our local serve πππ
npm start
2- Airtable API Configuration π
2.1 Go to Airtable
2.2 Click on Personal Web page
2.3 Click on HELP
2.4 Click on API documentation
3- Go to Airtable API β Personal-Web-Page
3.2 Click on AUTHENTICATION
3.3 Check show API key
3.4 Copy AIRTABLE_API_KEY and Base ID
4- Open local project on Visual studio π¨βπ»
A file named βMy Web Pageβ will be created where we set up the project. We will log into this created project and open it in visual studio code.
Please donβt forget the point!
cd mysite
cd MyWebPagecode .