https://github.com/de3ph/getyouradvice
Basic project to practice with Tailwind
https://github.com/de3ph/getyouradvice
Last synced: about 1 year ago
JSON representation
Basic project to practice with Tailwind
- Host: GitHub
- URL: https://github.com/de3ph/getyouradvice
- Owner: De3ph
- Created: 2022-08-26T10:49:47.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-26T18:43:03.000Z (almost 4 years ago)
- Last Synced: 2025-06-15T10:07:31.037Z (about 1 year ago)
- Language: JavaScript
- Homepage: get-your-advice.vercel.app
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vite + ReactJs + TailwindCss
### [Preview Link ( ͡° ͜ ͡°)](https://get-your-advice.vercel.app/)

## Before Running On Local
Get your X-RapidAPI-Key and X-RapidAPI-Host from [Motivational Quotes API on RapidAPI](https://rapidapi.com/bitbiscuit-bitbiscuit-default/api/motivational-quotes1/)
Create .env.local file in root and set your keys like this:
```shell
VITE_X_RAPID_API_KEY = {yourRapidApiKey}
VITE_X_RAPID_API_HOST_KEY = {yourRapidApiHostKey}
```
## Commands:
To start the dev server on your machine:
```shell
yarn dev
```
To start the dev server on your network:
```shell
yarn dev --host
```
To make the production build:
```shell
yarn build
```
To preview the production build locally:
```shell
yarn serve
```