Find your spot is a web application that lets users find inspiring destinations within your reach and allows users to share their experience on registered spots or add new one.
- Clone the repository
- Open it in your favourite IDE
- run
npm install
in your terminal - run
npm start
in your terminal
- HTML & CSS
- Javascript
- Node.js
- Express.js
- MongoDB
- dialogflow
**
├── app.js
├── cloudinary
│ └── index.js
├── controllers
│ ├── campgrounds.js
│ ├── reviews.js
│ └── users.js
├── middleware.js
├── models
│ ├── campground.js
│ ├── review.js
│ └── user.js
├── node_modules
├── package.json
├── public
│ ├── javascripts
│ └── stylesheets
├── routes
│ ├── campgrounds.js
│ ├── reviews.js
│ └── users.js
├── schemas.js
├── screenshots
│ ├── explore.png
│ ├── homepage.png
│ ├── newspot.png
│ └── spot.png
├── seeds
│ ├── cities.js
│ ├── index.js
│ └── seedHelpers.js
├── utils
│ ├── ExpressError.js
│ └── catchAsync.js
└── views
├── campgrounds
├── error.ejs
├── home.ejs
├── layouts
├── partials
└── users
*****************************************************