/Pet_show

Primary LanguageTypeScript

# Pet Showcase App ## Install and run: ```bash npm install npm run dev # or yarn yarn dev ``` ## Configuration ### Step 1. Get the connection string of your MongoDB server In the case of MongoDB Atlas, it should be a string like this: ``` mongodb+srv://:@my-project-abc123.mongodb.net/test?retryWrites=true&w=majority ``` For more details, follow this [MongoDB Guide](https://docs.mongodb.com/guides/server/drivers/) on how to connect to MongoDB. ### Step 2. Set up environment variables Copy the `.env.local.example` file in this directory to `.env.local` (which will be ignored by Git): ```bash cp .env.local.example .env.local ``` Then set each variable on `.env.local`: - `MONGODB_URI` should be the MongoDB connection string you got from step 1. ### Step 3. Run Next.js in development mode ```bash npm install npm run dev # or yarn install yarn dev ``` ## Deploy on Vercel Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). # Pet_show