A comprehensive directory of paint services, suppliers, and contractors in the Niagara region.
When deploying to Vercel, you'll need to set up the following environment variables in your Vercel project settings:
# Site Configuration
NEXT_PUBLIC_SITE_URL=https://your-vercel-domain.vercel.app
NEXT_PUBLIC_SITE_NAME="Niagara Paint Services Directory"
NEXT_PUBLIC_SITE_DESCRIPTION="Find trusted paint contractors, suppliers, and services in the Niagara region"
# API Configuration
NEXT_PUBLIC_API_BASE_URL=https://your-vercel-domain.vercel.app/api
# Build Configuration
NEXT_PUBLIC_ENABLE_ANALYTICS=true
NEXT_PUBLIC_ENABLE_SITEMAP=true
NEXT_PUBLIC_ENABLE_ROBOTS=true
# Deployment Mode
NODE_ENV=production- Go to your project in the Vercel dashboard
- Click on "Settings"
- Click on "Environment Variables"
- Add each of the above variables
- Deploy your project
For local development, create a .env.local file in the root directory with:
NEXT_PUBLIC_SITE_URL=http://localhost:3000
NEXT_PUBLIC_API_BASE_URL=http://localhost:3000/api
NODE_ENV=development