https://github.com/theprojectsx/fresh-harvests
https://github.com/theprojectsx/fresh-harvests
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/theprojectsx/fresh-harvests
- Owner: TheProjectsX
- Created: 2025-07-17T14:50:58.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-17T19:11:18.000Z (11 months ago)
- Last Synced: 2025-07-17T19:14:57.497Z (11 months ago)
- Language: TypeScript
- Size: 2.7 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 🛠️ Project Setup & Documentation
### 🔗 Live Demo
[https://fresh-harvests-omega.vercel.app/](https://fresh-harvests-omega.vercel.app/)
### 🚀 How to Run the Project Locally
1. **Clone the Repository**
```bash
git clone https://github.com/TheProjectsX/fresh-harvests
cd fresh-harvests
```
2. **Install Dependencies**
```bash
npm install
```
3. **Environment Variables**
- Create a `.env` file at the root.
- Add your environment variables like or follow `.env.example`:
```
NEXT_PUBLIC_API_URL=https://your-api.com
```
4. **Run the App**
```bash
npm run dev
```
Open [http://localhost:3000](http://localhost:3000)
---
### 📦 Build and Deploy
1. **Build the Project**
```bash
npm run build
```
2. **Start the Production Server Locally**
```bash
npm start
```
3. **Deploy (Options)**
- **Vercel** (Recommended for Next.js)
- Push code to GitHub
- Go to [vercel.com](https://vercel.com), import repo, deploy.
- **Other Platforms**
- Make sure `.next`, `public`, and `node_modules` are correctly configured
- Host on your own server or platforms like Netlify, Railway, etc.