A creative digital gift and motion design service website.
This project is configured for deployment to Vercel. Follow these steps:
- Push your code to a Git repository (GitHub, GitLab, or Bitbucket)
- Sign up/log in to Vercel
- Create a new project and import your repository
- Vercel will automatically detect the project settings:
- Build Command:
npm run build - Output Directory:
dist/public - Install Command:
npm install
- Build Command:
.
├── client/ # React frontend
│ ├── src/ # Source files
│ ├── index.html # HTML entry point
│ └── vite.config.ts # Vite configuration
├── server/ # Backend server code
├── shared/ # Shared code between client and server
├── dist/ # Build output directory
├── vercel.json # Vercel configuration
└── package.json # Project dependencies and scripts
To run the project locally:
# Install dependencies
npm install
# Start development server
npm run devTo build the project for production:
npm run buildFor deployment, you may need to set environment variables in the Vercel dashboard:
DATABASE_URL- Database connection stringAPI_KEY- API keys for external services- Any other environment variables your application requires
To use a custom domain:
- Add a domain in your Vercel project settings
- Follow the DNS configuration instructions provided by Vercel
- Vercel will automatically provision an SSL certificate
For issues with deployment, contact the development team.