Skip to content

Commit 7d89347

Browse files
author
Nirmalya Ghosh
authored
Merge pull request #352 from ahmadbilaldev/main
📦 NEW: Books App
2 parents 72ad76d + 68990f0 commit 7d89347

File tree

11 files changed

+2981
-0
lines changed

11 files changed

+2981
-0
lines changed

books-app/.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env.local
29+
.env.development.local
30+
.env.test.local
31+
.env.production.local
32+
33+
# vercel
34+
.vercel

books-app/README.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
![cover](assets/cover.png)
2+
3+
<div align="center">
4+
<h2>Books App</h2>
5+
</div>
6+
7+
> [Live Preview](https://rapidapi-example-books-app.vercel.app/)
8+
9+
### ⚡️ Features
10+
11+
- Search for Books based on multiple parameters.
12+
- Responsive design.
13+
14+
## Guide
15+
16+
[Read a step-by-step guide to build this application.](https://rapidapi.com/guides/build-books-app)
17+
18+
### 🛠️ Installation Steps
19+
20+
1. Download the `books-app` directory. Click [here](https://download-directory.github.io/?url=https://github.com/RapidAPI/DevRel-Examples-External/tree/main/books-app) to download it.
21+
22+
2. Unzip the downloaded file and navigate to the working directory.
23+
24+
```bash
25+
cd RapidAPI\ DevRel-Examples-External\ main\ books-app/
26+
```
27+
28+
3. Install dependencies
29+
30+
```bash
31+
npm install
32+
```
33+
34+
4. Create `.env.local` file in root and add your RapidAPI key.
35+
36+
```bash
37+
NEXT_PUBLIC_RAPIDAPI_KEY=YOUR_RAPID_API_KEY
38+
```
39+
40+
5. Run the app
41+
42+
```bash
43+
npm run dev
44+
```
45+
46+
You are all set! Open [localhost:3000](http://localhost:3000/) to see the app.

books-app/assets/cover.png

2.03 MB
Loading

0 commit comments

Comments
 (0)