soracard.com website build with Nuxt 3
Env variables required to send email via gmail API:
NUXT_GMAIL_CLIENT_ID
NUXT_GMAIL_CLIENT_SECRET
NUXT_GMAIL_REFRESH_TOKEN
NUXT_GMAIL_REDIRECT_URL=https://developers.google.com/oauthplayground
NUXT_GMAIL_USER #sender email address
Here is an article how to get them
Env variables required for reCAPTCHA:
NUXT_RECAPTCHA_SECRET_KEY
NUXT_PUBLIC_RECAPTCHA_SITE_KEY
Get them here (Score based (v3))
On local machine you can use .env file in the root of the project to specify the variables
Make sure to install the dependencies:
yarn installStart the development server on http://localhost:3000:
yarn devBuild the application for production:
yarn buildLocally preview production build:
yarn previewCheck out the deployment documentation for more information.
