This is the final project for the HackYourFuture curriculum we did as a cohort using the MERN stack by following the agile methodology with our team and a group of mentors. A quick guide to what we built:
ELVA is a trip planning tool that helps travelers organize their trips by adding daily activities with details like name, location, price, ratings, notes, and photos, as well as an overall review and rating for each trip. It also allows users to copy existing trips and customize them to their preferences, making trip planning easier without needing to search across multiple apps for activity ideas along their chosen routes.
Main features:
- Registration & Login
- Includes "Forgot Password" functionality
- Browse Trips
- View trip details
- Create Trip
- Add cover photo
- Organize by days and activities
- Activity details include: Name, Location, Price, Rating, Notes, Photos
- Add overall review and rating
- See Trip Map
- Displays activity photos on the map
- Copy Trip
- Duplicate an existing trip
- Add to Bookmarks
- Save trips for later
- Edit Trip Details
- Modify trip content
- Delete Trip / Trip Details
- Remove trip or specific activities
- Manage Profile
- Upload profile photo
- Trip Management Sections
- View Published Trips
- View Draft Trips
- Access Bookmarks
- View Other Travellers’ Profiles
- See their published trips
Click here for the Demo version
First, to setup all the directories run the following in the main directory:
npm install
npm run setup
The first command will install cypress and some small libraries needed for running the rest of the commands. The second will go into the client and server directories and set those up to be ran.
In the client and server directory there are two .env.example files. Create a copy and rename that to .env. Then follow the instructions in those files to fill in the right values.
To run the app in dev mode you can run the following command in the main directory:
npm run dev
client
├── public
└── src
| └── __tests__
| └── __testUtils__
| └── api
| └── assets
| └── components
| └── context
| └── hooks
| └── pages
| └── __tests__
| └── components
| └── util
| index.jsx
cypress
| └── fixtures
| └── integration
| └── plugins
| └── support
server
└── src
└── __tests__
└── __testUtils__
└── controllers
└── db
└── middleware
└── models
└── routes
└── util
└── validation
index.js
public|| public facing client code__tests__|| anyjesttests for specific components will be in a__tests__folder on the same level__testUtils__|| any code that is only being used in the tests is put in the__testUtils__folder to separate that away from the rest of the codeapi|| fetches user data by ID from the APIcomponents|| all of our shared components that are used over multiple pagescontext|| React Context providers for managing global auth, error, and loading statehooks|| all of our custom hookspages|| the page components of our app, any routing will go between these componentspages/components|| components used specifically on those pagesutil|| any utility functions that can be used anywhere on the client sidemain.jsx|| the start point of the clientvite.config.js|| to configure vite
fixtures|| any data/files thatcypressneeds can be placed hereintegration|| all of our tests are in here, separated in folders based on the pages in our appplugins|| any plugins for ourcypressconfiguration can be placed heresupport|| custom commands and other support files forcypresscan be placed here
__tests__|| anyjesttests for the api endpoints as that is our testing strategy for the backend__testUtils__|| any code that is only being used in the tests is put in the__testUtils__folder to separate that away from the rest of the codecontrollers|| all of our controller functions that interact with the databasedb|| all of our configuration for the databasemiddleware|| all of our middleware functions like auth, validationmodels|| all of ourmongoosemodels will be placed hereroutes|| code to match up the API with our controllersutil|| any utility functions that can be used anywhere on the server sidevalidation|| all of our validation schemas for dataindex.js|| the start point of the server
The base stack of the app is a MERN stack (Mongoose, Express, React, Node). Next to that we make use of the following extras:
dotenv|| To load the .env variables into the process environment. See docsvite|| To bundle our React app and create a static app to host. See docshusky|| To run our tests and linter before committing. See docseslint|| To check our code. We have different configurations for frontend and backend. You can check out the configuration in the.eslintrc.(c)jsfiles in the respectiveclientandserverfolders. See docsprettier|| To automatically format our code. See docsconcurrently|| To run commands in parallel. See docs
For more information on how these work together including the automatic deployment to heroku, have a look at our detailed DEV file.
@testing-library/*|| We use React Testing Library to write all of our tests. See docsjest|| To run our tests and coverage. See docsjest-fetch-mock|| To mock out the backend for our testing purposes. See docsprop-types|| To type-check our components. See docstailwindcss|| To style our application using utility-first CSS. See docsleaflet|| To display interactive maps in our app. See docsreact-icons|| To use popular icon sets as React components. See docsreact-select|| To use customizable dropdown/select components. See docs
nodemon|| To automatically restart the server when in development mode. See docsjest|| To run our tests and coverage. See docssupertest|| To more easily test our endpoints. See docsmongodb-memory-server|| To mock out our database in our backend tests. See docscors|| To open up our API. See docsmongoose|| To add schemas to our database. See docsbcrypt|| To securely hash and compare passwords. See docscookie-parser|| To parse cookies from incoming requests. See docsgoogleapis|| To interact with Google services like OAuth. See docsimagekit|| To handle image uploading, optimization, and CDN delivery. See docsjsonwebtoken|| To generate and verify JSON Web Tokens for authentication. See docsmulter|| To handle multipart/form-data for file uploads. See docsnodemailer|| To send emails from the server (e.g. for password resets). See docsuuid|| To generate unique IDs. See docszod|| To validate and parse server-side request data using schemas. See docs

