❯ REPLACE-ME
- 📍 Overview
- 👾 Features
- 📁 Project Structure
- 🚀 Getting Started
- 📌 Project Roadmap
- 🔰 Contributing
- 🎗 License
- 🙌 Acknowledgments
❯ REPLACE-ME
❯ REPLACE-ME
└── wanderLust/
├── app.js
├── cloudConfig.js
├── controllers
│ ├── listing.js
│ ├── review.js
│ └── user.js
├── init
│ ├── data.js
│ └── index.js
├── middleware.js
├── models
│ ├── listing.js
│ ├── reviews.js
│ └── user.js
├── package-lock.json
├── package.json
├── public
│ ├── css
│ └── js
├── routes
│ ├── listing.js
│ ├── review.js
│ └── users.js
├── rundb.txt
├── schema.js
├── utils
│ ├── ExpressError.js
│ └── wrapAsync.js
└── views
├── error.ejs
├── includes
├── layouts
├── listings
└── usersWANDERLUST/
__root__
app.js ❯ REPLACE-MEcloudConfig.js ❯ REPLACE-MEpackage-lock.json ❯ REPLACE-MEschema.js ❯ REPLACE-MEmiddleware.js ❯ REPLACE-MErundb.txt ❯ REPLACE-MEpackage.json ❯ REPLACE-ME
controllers
user.js ❯ REPLACE-MEreview.js ❯ REPLACE-MElisting.js ❯ REPLACE-ME
models
reviews.js ❯ REPLACE-MEuser.js ❯ REPLACE-MElisting.js ❯ REPLACE-ME
views
error.ejs ❯ REPLACE-MElistings
show.ejs ❯ REPLACE-MEhome.ejs ❯ REPLACE-MEnew.ejs ❯ REPLACE-MEindex.ejs ❯ REPLACE-MEedit.ejs ❯ REPLACE-MElayouts
boilerplate.ejs ❯ REPLACE-MEusers
signup.ejs ❯ REPLACE-MElogin.ejs ❯ REPLACE-MEincludes
navbar.ejs ❯ REPLACE-MEflash.ejs ❯ REPLACE-MEfooter.ejs ❯ REPLACE-ME
routes
review.js ❯ REPLACE-MElisting.js ❯ REPLACE-MEusers.js ❯ REPLACE-ME
utils
ExpressError.js ❯ REPLACE-MEwrapAsync.js ❯ REPLACE-ME
public
css
style.css ❯ REPLACE-MErating.css ❯ REPLACE-MEjs
script.js ❯ REPLACE-ME
Before getting started with wanderLust, ensure your runtime environment meets the following requirements:
- Programming Language: JavaScript
- Package Manager: Npm
Install wanderLust using one of the following methods:
Build from source:
- Clone the wanderLust repository:
❯ git clone https://github.com/deepesh-np/wanderLust- Navigate to the project directory:
❯ cd wanderLust- Install the project dependencies:
❯ npm installRun wanderLust using the following command:
Using npm
❯ npm startRun the test suite using the following command:
Using npm
❯ npm test-
Task 1:Implement feature one. -
Task 2: Implement feature two. -
Task 3: Implement feature three.
- 💬 Join the Discussions: Share your insights, provide feedback, or ask questions.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
wanderLustproject. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/deepesh-np/wanderLust
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.' - Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
This project is protected under the SELECT-A-LICENSE License. For more details, refer to the LICENSE file.
- List any resources, contributors, inspiration, etc. here.