Skip to content

Commit

Permalink
Merge pull request #54 from Kunalpal215/main
Browse files Browse the repository at this point in the history
Image to text converter
  • Loading branch information
abhishek213-alb committed Oct 6, 2022
2 parents 54ccfc6 + 7808097 commit 06b8376
Show file tree
Hide file tree
Showing 17 changed files with 29,047 additions and 0 deletions.
24 changes: 24 additions & 0 deletions image_to_text/.gitignore
@@ -0,0 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.env
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
18 changes: 18 additions & 0 deletions image_to_text/README.md
@@ -0,0 +1,18 @@
# Image2Text & Image Uploader

This project is built using ReactJS and two API services provided by RapidAPI(https://rapidapi.com/apishub/api/ocr-100-image-text-extractor) & CLoudinary(https://cloudinary.com/documentation/upload_images).

Steps to runt this project:

### Get API key for RapidAPI text extractor & upload preset for cloudinary API
Then, add both of them to a .env file at root of your project as shown:
```
REACT_APP_CLOUDINARY_UPLOAD_PRESET = "Upload Preset"
REACT_APP_IMAGE2TEXT_API_KEY = "API Key"
```
### `npm install`
This will install all the related dependencies
### `npm start`
This will launch the project in your browser

## Wollah! project must now be working :)

0 comments on commit 06b8376

Please sign in to comment.