An image search application that use Google Custom Api and auth0
React, Vite, Express, Node, Axios, Typescript, Joi
You need your own .env file with Key information. To get your own Keys you need to visit Google Custom Api and auth0.
VITE_AUTH0_CLIENT_ID=YOUR_AUTH0_CLIENT_ID
VITE_AUTH0_DOMAIN=YOUR_AUTH0_DOMAIN
VITE_GOOGLE_API_KEY=YOUR_GOOGLE_API_KEY
VITE_GOOGLE_SEARCHENGINE_ID=YOUR_GOOGLE_SEARCHENGINE_ID
Create Vite
npm create vite -> name project -> react -> typescript
When done install all packages from VITE
npm install
Run Server
npm run dev
Express js
npm i express
Axios
npm i axios
Tailwind
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
Validation with Joi
npm install joi