Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.65 KB

README.md

File metadata and controls

38 lines (26 loc) · 1.65 KB

Campsite is a website where users can create and review campgrounds. In order to review or create a campground, you must have an account. This project was part of Colt Steele's web dev course on udemy.

This project was created using Node.js, Express, MongoDB, and Bootstrap. Passport.js was used to handle authentication.

Campsite

home_page login_page user_end_1 user_end_2 user_end_3

Features

  • Users can create, edit, and remove campgrounds
  • Users can review campgrounds once, and edit or remove their review
  • User profiles include more information on the user (full name, email, phone, join date), their campgrounds, and the option to edit their profile or delete their account
  • Search campground by name or location
  • Sort campgrounds by highest rating, most reviewed, lowest price, or highest price

Run it locally

  1. Install mongodb
  2. Create a cloudinary account to get an API key and secret code

Create a .env file (or just export manually in the terminal) in the root of the project and add the following:

DATABASEURL='' API_KEY='' API_SECRET=''


Run `mongod` in another terminal and `node app.js` in the terminal with the project.